lein的档案"安装"和" jar"任务

时间:2017-09-23 05:22:26

标签: clojure leiningen

在我的project.clj中,当我执行lein runlein jarlein uberjarlein install时,我尝试设置一些jvm-opts

到目前为止,只有uberjardev条目似乎有用(我可以在运行时通过System/getProperty读取它们)

:profiles {:dev     {:jvm-opts ["-Dcompiling-utils=true"]}
           :uberjar {:jvm-opts ["-Dcompiling-utils=true"]}
           :install {:jvm-opts ["-Dcompiling-utils=true"]}}

如何获取lein installlein jar的个人资料?

感谢

1 个答案:

答案 0 :(得分:1)

对于给定任务,您可以使用高阶任务with-profile激活配置文件:

lein with-profile install install
lein with-profile install jar