Re: lein2 is not aware of newly installed jars in ~/.m2/repositories/

2012-08-21 Thread Jim - FooBar();
wow! I would have never found that on my own! my temporary solution was to cheat (renaming the jar) but your suggestion works as well...Thanks a lot Nelson... :-) Jim On 21/08/12 21:35, Nelson Morris wrote: This took me a while to debug cause I expected [org.clojure/clojure "1.5.0-master-SNAP

Re: lein2 is not aware of newly installed jars in ~/.m2/repositories/

2012-08-21 Thread Nelson Morris
This took me a while to debug cause I expected [org.clojure/clojure "1.5.0-master-SNAPSHOT"] to cause a failure since I didn't have it. Turns out, version ranges will ignore not finding the dependency if it is outside of the range. In this case, seesaw has a dependency on j18n. j18n has a depende

Re: lein2 is not aware of newly installed jars in ~/.m2/repositories/

2012-08-21 Thread Jim - FooBar();
(defproject Clondie24 "0.1.0-SNAPSHOT" :description "Blondie24 Extreme-Makeover! " :url "https://github.com/jimpil/Clondie24"; :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.5.0

Re: lein2 is not aware of newly installed jars in ~/.m2/repositories/

2012-08-21 Thread Nelson Morris
Whats the project.clj look like? On Tue, Aug 21, 2012 at 2:25 PM, Jim - FooBar(); wrote: > I built clojure 1.5 snapshot from source and installed it in > ~/.m2/repositories/org/clojure/ via 'mvn install' but now lein2 reverts to > 1.3 after amending my project.clj!!! How can I make leiningen awar

lein2 is not aware of newly installed jars in ~/.m2/repositories/

2012-08-21 Thread Jim - FooBar();
I built clojure 1.5 snapshot from source and installed it in ~/.m2/repositories/org/clojure/ via 'mvn install' but now lein2 reverts to 1.3 after amending my project.clj!!! How can I make leiningen aware of the newly installed snaphot version? Jim On 21/08/12 19:49, Jim - FooBar(); wrote: H