I created addition pairs of maven snapshot CI builds for clojure &
contrib.

Repository :  http://build.clojure.org/snapshots

"master":
org.clojure:clojure:1.1.0-master-SNAPSHOT
org.clojure:clojure-contrib:1.1.0-master-SNAPSHOT

"new"
org.clojure:clojure:1.1.0-new-SNAPSHOT
org.clojure:clojure-contrib:1.1.0-new-SNAPSHOT

This makes an easy way to play & follow along with Rich's
"new"snapshot code in your project.

example:

<project>
<!-- snip -->
  <properties>
    <clojure.version>1.1.0-new-SNAPSHOT</clojure.version>
  </properties>
<!-- snip -->
  <repositories>
    <repository>
      <id>clojure-snapshots</id>
      <url>http://build.clojure.org/snapshots</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
<!-- snip -->
  <dependencies>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure</artifactId>
      <version>${clojure.version}</version>
    </dependency>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure-contrib</artifactId>
      <version>${clojure.version}</version>
    </dependency>
  </dependencies>
</project>

NOTE: Your entire build chain must use "master" or "new" and not mix
the two or you will encounter the dreaded "NoSuchMethodError:
clojure.lang.RestFn."

-Tim

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

Reply via email to