我创建了一个 lein 项目,而不是使用 eclips 的开发依赖性更新其 project.clj
我跑了“lein deps”
它下载了所有依赖项
但是在 my.m2/repository 目录中没有 clojure 目录。这导致我
leiningen.eclipse 加载问题:java.io.FileNotFoundException:无法在类路径上找到 clojure/contrib/duck_streams__init.class 或 clojure/contrib/duck_streams.clj:(eclipse.clj:1)
当我运行“lein help”时出错,因为我无法运行我的“lein eclipse”命令,所以放弃了我使用 eclipse 进行开发。
有什么解决办法吗???提前致谢。
我的 project.clj 在下面给出
(
defproject for_test "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.2.1"]]
:dev-dependencies [[lein-eclipse "1.0.0"]]
)
谢谢你,chirag ghiyad