【发布时间】:2013-07-25 02:34:44
【问题描述】:
假设我正在破解我在项目中使用的 clojure 库:
/用户/SCdF/代码/myproject/
/User/SCdF/Code/other-peoples-projects/clojure-library-cloned-from-github
目前,当我在 clojure-library-cloned-from-github 中进行更改时,我会运行 lein install 将我的新版本推送到本地存储库(我已将我和他们的 project.clj 更改为指向更新的 -SNAPSHOT 版本库,因此每次都会更新),然后在myproject 上重新启动/运行lein deps。
有没有办法告诉 leiningen 在 ../../clojure-library-cloned-from-github 中查找库的源代码,而不是使用 maven 和 jar,这样当我对代码进行更改时,它们会在运行时看到?
【问题讨论】: