Reputation: 1564
Runnig lein for the first time, it installs clojure, but were to? It does not seem to be in /Library ... ~/Library ... ~/.lein ...
Is there an established location for clojure.jar and the contribution jars on Unix/OS X## Heading ##?
Upvotes: 5
Views: 1016
Reputation: 26466
The default path is given by
(.getPath (clojure.java.io/file (System/getProperty "user.home") ".m2" "repository")))
as used by pomegranate.
Upvotes: 3
Reputation: 20194
Leiningen uses maven (or, to be more precise, the underlying libs which implement maven), which by default will install all dependencies under $HOME/.m2/
.
Upvotes: 3