サンプルプロジェクトでは、
https://github.com/technomancy/leiningen/blob/master/sample.project.clj
online 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
私が見逃しているものはありますか?