To access the nightly snapshots in Maven, you must update your
pom.xml's <repositories> element (creating it as necessary):
<repositories>
<repository>
<id>tapestry-snapshots</id>
<url>http://tapestry.formos.com/maven-snapshot-repository/</url>
</repository>
</respositories>
You can then add a <dependency> for Clojure:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure-lang</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
You can then add a <dependency> for Clojure-Contrib:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure-contrib</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Clojure-Contrib has a transitive dependency to the clojure-lang
artifact: you only need include one of these,
not both.
Note that the repository includes a sources JAR (most IDEs will
download it automatically, which may help with debugging). In
addition, there's a "slim" variant, where the clojure
sources are NOT pre-compiled:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure-lang</artifactId>
<version>1.0-SNAPSHOT</version>
<classifier>slim</classifier>
</dependency>
clojure-contrib also has a "slim" jar.
Hope this makes it easier to track with nightly builds.
--
Howard M. Lewis Ship
Creator of Apache Tapestry
Director of Open Source Technology at Formos