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

--~--~---------~--~----~------------~-------~--~----~
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
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