leiningen 2022-09-28

Hello! I have the following in my project.clj file. Since the jars inside will by dynamically populated, is there a way I could just say include all jars in directory foo? I tried searching for a plugin but no success.

:resource-paths ["foo/doo-1.0.jar"
                   "foo/goooo-1.0.jar"]

@vemv thanks your solution worked ❤️

:resource-paths ~(any (custom :code :here))

~ allows you to eval whatever you want

thanks I will give it a try