0

I've built a clojure library, it's on my local machine and now I want to test as it were a third-party library as well as testing it internally by tests.

How can I install the library locally by lein the same way I can install libraries normally by "project.clj" -> ":dependencies [[....]]"

Alan Coromano
  • 24,958
  • 53
  • 135
  • 205
  • 3
    Possible duplicate of [How to use leiningen to develop using local jars?](http://stackoverflow.com/questions/8411428/how-to-use-leiningen-to-develop-using-local-jars) – WolfeFan Jan 26 '16 at 17:20

1 Answers1

1

lein install should install it to your ~/.m2 directory to give you exactly what you want.

gfredericks
  • 1,312
  • 6
  • 11