Leiningen与Autodoc崩溃(sh不存在)

时间:2014-10-11 22:23:59

标签: clojure leiningen autodoc

我正在尝试在我的项目中使用Clojure autodoc。我的project.clj看起来像这样:

:license {:name "Eclipse Public License"
        :url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]]
:plugins [[lein-autodoc "0.9.0"]])

当我lein autodoc时,我收到此错误

clojure.lang.Compiler$CompilerException: java.lang.IllegalAccessError: sh does not exist, compiling:(leiningen/autodoc.clj:1:1)

我确实有二进制sh

$ which sh
/bin/sh

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

lein-autodoc不适用于leiningen 2.X.您看到的错误消息来自this line

[leiningen.compile :only [sh]] ; in 2.0 this moves to leiningen.eval

显然这与/ bin / sh无关。

您可以查看Codox