I'd like to remind people using Clojure and Maven that they can get
nightly builds of Maven via the Tapestry360 maven snapshot repository:

http://tapestry.formos.com/maven-snapshot-repository

To access the nightly snapshot 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>

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 core library Clojure
sources are NOT pre-compiled:

 <dependency>
    <groupId>org.clojure</groupId>
    <artifactId>clojure-lang</artifactId>
    <version>1.0-SNAPSHOT</version>
    <classifier>slim</classifier>
 </dependency>

On Fri, Mar 20, 2009 at 7:15 AM, Rich Hickey <richhic...@gmail.com> wrote:
>
> New release 20090320 - 
> http://clojure.googlecode.com/files/clojure_20090320.zip
>
> Incorporates all the recent additions - fully lazy seqs, :let option
> for doseq/for, letfn for mutually recursive local fns, synchronous
> watches, multi-arg set/union/difference/intersection, counted?, per-
> defmulti hierarchies, #_ ignore form reader macro, future-calls,
> future and pcalls/pvalues, defmulti docstrings and metadata, methods/
> prefers for multimethod reflection, uniform metadata handling for
> atoms/refs/agents/vars/namespaces, condp, release-pending-sends, AOT
> tweaks to support applets and Android, etc. All this in addition to
> many fixes and enhancements.
>
> The API docs page is now current - changes to the rest of the site
> will come soon.
>
> This release includes many patches from contributors, and input and
> reports from many users - thanks all!
>
> Rich
>
> >
>



-- 
Howard M. Lewis Ship

Creator Apache Tapestry and Apache HiveMind

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