在示例项目中,
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
文件夹。
有没有办法,我失去了一些东西?