I have an application where I would like to have mixed Java and Scala source (actually its migrating a java app to scala - but a bit at a time).
I can make this wor
I once asked a very similar question about how to include non-Java code in a Maven project. The gist of the answer was to have under src a different directory for each programming language, and to find/write a Maven plugin that would know what to do with each. Eg:
src/
|-- main
| |-- bin
| |-- sh
| |-- sql
| |-- scala
| |-- java
| `-- resources
|-- site
...