1
示例項目
打包資源,如何在leiningen項目
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
文件夾。
有沒有辦法,我失去了一些東西?
嗨@zcaudate我試圖解決這個問題,http://stackoverflow.com/questions/23020288/howto-package-my-project-resource-paths-to-use-as-project-dependency但我認爲它不同於這個解決方案,不是嗎? – tangrammer