I've been using a project.clj file like this in Leiningen to get 1.3 alpha1 
through alpha6:

(defproject clj-1.3.0-alpha5 "1.0.0-SNAPSHOT"
  :description "FIXME: write"
  :dependencies [[org.clojure/clojure "1.3.0-alpha5"]])

Leiningen uses Maven under the hood, so if you have any Maven pom.xml file that 
works for any release of 1.3.0-alpha*, just change the * and try again.  If 
not, here is the <dependencies> section of the XML file generated with "lein 
pom" in my little Leiningen project:

  <dependencies>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure</artifactId>
      <version>1.3.0-alpha5</version>
    </dependency>
  </dependencies>


Andy

On Mar 24, 2011, at 3:53 AM, Jules wrote:

> is this:
> 
> http://build.clojure.org/releases/org/clojure/clojure/
> 
> no longer the place to point my maven :-(
> 
> I'd love to give the latest alpha's a try, but the thought of manually 
> d/l-ing them and then installing them into my local repo is just too much !!
> 
> should I point somewhere else, or will this release dir be updated soon ?
> 
> thanks
> 
> Jules

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to