我对clojure一点也不熟悉,而且我有一个我正在尝试构建的项目的源代码。该项目有一个 project.clj 文件,谷歌说这意味着我应该使用 lein 构建工具。然而:
$ lein compile #lein jar does the same thing
Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: Could not locate testui/core__init.class oCompiling testui.core
r testui/core.clj on classpath
我怀疑 project.clj 可能已损坏。core.clj 位于 src/com/foodient/semanticanalysis/testui,project.clj 如下所示:
(defproject testui "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]
[org.apache.poi/poi "3.8-beta4"]
[gate-clj "1.0.0"]]
:aot [testui.core]
:main testui.core
:run-aliases {:test testui.core/-main})
有任何想法吗?