Thanks Tim! I've put together an experimental build of Incanter using the new builds:
http://groups.google.com/group/incanter/browse_thread/thread/94b30744fee1095e I ran into a minor issue with Clojure's new branch that I was able to work around but couldn't diagnose (more details in the linked post). David On Dec 12, 4:18 pm, dysinger <[email protected]> wrote: > 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
