I want to compile a local jar into my clojure project, I can do this easily with the following
https://gist.github.com/stuartsierra/3062743
mkdir repo
mvn install:install-file -DgroupId=local -DartifactId=bar \
-Dversion=1.0.0 -Dpackaging=jar -Dfile=bar.jar \
-DlocalRepositoryPath=repo
But I have a continuous integration and build server (jenkins) that looks in ~/.m2. How can I get leiningen to look in .m2???