How to use leiningen to develop using local jars?

前端 未结 3 2088
渐次进展
渐次进展 2020-12-16 19:44

I realize that this question is pretty much the exact question found here. However, seeing as that question is 1.5 years old (or so), I would like to revisit it. How does on

3条回答
  •  不思量自难忘°
    2020-12-16 20:05

    Create a private Maven Repository, and then, add the following to your project.clj

    :repositories {"local" ~(str (.toURI (java.io.File. "your_local_repository")))}
    

提交回复
热议问题