We're having great success with Play, but like any project, we need to make sure it's broken into modules as it grows. So, we've refactored our Play code to the standard SBT layout,
following the official docs.
However, while this works well for local running (sbt run) and testing (sbt test), when we build the universal distributable (sbt dist), all the resource files are placed into conf/, not the proper src/main/resources. This is a problem, because it means access to resource files when in dev mode (sbt run), is different than in dist mode, breaking code that needs config files.
How are other people handling this, to ensure resource files are in `src/main/resources` regardless of how a Play project is built?
Thanks,
Joe