Here's part of my build.sbt:
Project(...)...
.settings(...,
resourceGenerators in Compile += myTask.taskValue,
mappings in (Compile, packageSrc) += {
((resourceManaged in Compile).value / fileName) -> fileName
}
)
Basically, I want to load this file at runtime -- how do I do that/where do I look for it?
I'm using sbt-assembly to package stuff up.