On Thu, 21 Apr 2011 20:24:15 -0400, uMany <[email protected]> wrote:
when I try lein deps at a test-project with this I got this long error message: tmp/test-project$ lein deps Downloading: org/clojure/clojure/1.2.0-master-SNAPSHOT/clojure-1.2.0-master-SNAPSHOT.jar from clojure-snapshots Downloading: org/clojure/clojure/1.2.0-master-SNAPSHOT/clojure-1.2.0-master-SNAPSHOT.jar from clojars Downloading: org/clojure/clojure-contrib/1.2.0-SNAPSHOT/clojure-contrib-1.2.0-SNAPSHOT.jar from clojure-snapshots Downloading: org/clojure/clojure-contrib/1.2.0-SNAPSHOT/clojure-contrib-1.2.0-SNAPSHOT.jar from clojars An error has occurred while processing the Maven artifact tasks. Diagnosis:
It looks like you have dependencies on clojure-1.2.0-SNAPSHOT and clojure-contrib-1.2.0-SNAPSHOT. Try removing the "-SNAPSHOT" from these in your project.clj file.
In the maven/jar world a SNAPSHOT refers to a interim, development version of jar, and can disappear at any time. Clojure 1.2 has been available as a release version for quite a while now.
-- Hugo Duncan -- 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
