サンプルプロジェクトでは、
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
私が見逃しているものはありますか?