I'm developing a Scala tool under the SBT build system that depends on some resource files at runtime. The files are included in the normal src/main/resources
directory. I successfully publish to my server and use it as a dependency in another project, but the files necessary for the tool to run are nowhere to be found!
find . -name <necessary_resource>
within the project that depends on my tool finds nothing. It's clear then that sbt publish
does not package up the resource files.
Is there a way to include the resources files whenever I publish the tool, or is there a different solution entirely to this problem?