私はclojureにまったく精通しておらず、構築しようとしているプロジェクトのソースを持っています。プロジェクトにはproject.cljファイルがあります。これは、Googleが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})
何か案は?