> This is a problem with the current version of Leiningen. There are a > couple of ways to work around the problem. Here is one: > > Create a new Leiningen project. > > lein new delete-me > cd delete-me > > Open project.clj and change > > :dependencies [[org.clojure/clojure "1.3.0"]] > > to > > :dependencies [[org.clojure/clojure "1.2.1"]] > > Save this file and then run > > lein deps > > You can now delete this project. The whole point was to get > clojure-1.2.1 into your local maven repository. lein should now work > in ClojureScript One and with any other Clojure 1.3 projects.
I just ran into this myself. I think a slightly more convenient fix is to run lein install org.clojure/clojure "1.2.1" In any event, that did it for me. I'll try to get the wiki and website updated so people can be aware of the workaround. -- 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 Note that posts from new members are moderated - please be patient with your first post. 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