I forgot to mention that there is still one small issue
https://www.assembla.com/spaces/clojure/tickets/208-pom-uses-old-artifactId
that needs fixed.
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure-lang</artifactId>
<version>1.1.0-alpha-SNAPSHOT</version>
</dependency>
Until it's fixed you can use ^
On Nov 3, 5:10 pm, dysinger <[email protected]> wrote:
> Hello,
>
> Today Phil Hagelberg, Rich Hickey and myself setup a CI server for
> clojure & contrib ->http://build.clojure.org(hudson -> github)
>
> If you use maven-ant-tasks (+1) or maven 2.x (or ivy too) you can do
> something like this in your settings.xml or pom.xml
>
> <repository>
> <id>clojure-snapshot</id>
> <url>http://build.clojure.org</url>
> <releases>
> <enabled>false</enabled>
> </releases>
> <snapshots>
> <enabled>true</enabled>
> </snapshots>
> </repository>
>
> Then you can add clojure snapshot as a project dependency
>
> <dependency>
> <groupId>org.clojure</groupId>
> <artifactId>clojure</artifactId>
> <version>1.1.0-alpha-SNAPSHOT</version>
> </dependency>
>
> :) #l8r
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---