我在Ubuntu 1.04上使用lein 1.6.2,并创建了一个裸项目。我无法弄清楚为什么我会得到
“没有命名空间:在project.clj中列出的编译。”
输入lien compile时出现错误。
project.clj
(defproject amr_db "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]
[korma "0.2.1"]])
core.clj(到目前为止)
(ns amr_db.core
(:gen-class))
如何清除警告?
答案 0 :(得分:6)
将这样的行添加到project.clj
:main amr_db.core
如果编译的罐子不是主要的,你可能也想要这样的东西。
:aot [amr_db.core amr_db.another_example]