Maven access to nightly builds

13 views
Skip to first unread message

Howard Lewis Ship

unread,
Apr 14, 2009, 10:52:26 AM4/14/09
to clo...@googlegroups.com
Both Clojure and Clojure-Contrib are now available as nightly builds
from the Tapestry360 Maven snapshot repository.

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

Brian Sletten

unread,
Apr 14, 2009, 11:11:54 AM4/14/09
to clo...@googlegroups.com
Cool, thanks Howard. That is helpful and I know how much you love
Maven, so it is appreciated. :)
Reply all
Reply to author
Forward
0 new messages