【发布时间】:2012-10-15 23:58:06
【问题描述】:
在示例项目中,
https://github.com/technomancy/leiningen/blob/master/sample.project.clj
在line 217,有一个包含非代码文件的指令:
:resource-paths ["src/main/resource"] ; non-code files included in classpath/jar
我的项目中有一个resources 文件夹,我的project.clj 中有这一行
:resource-paths ["resources"] ; non-code files included in classpath/jar
但是,当我运行lein jar 来生成.jar 文件时,它不会打包resources 文件夹。
我有什么遗漏的吗?
【问题讨论】: