Is there a way to compile multiple java source directories in a single maven project?
|
You can add a new source directory with build-helper
|
|||||||
|
|
This worked for me
|
|||||||||||||||
|
|
to make it work in intelliJ, you can also add
to maven-compiler-plugin |
||||
|
|
|
Used the build-helper-maven-plugin from the post - and update src/main/generated. And mvn clean compile works on my ../common/src/main/java, or on ../common, so kept the latter. Then yes, confirming that IntelliJ IDEA (ver 10.5.2) level of the compilation failed as David Phillips mentioned. The issue was that IDEA did not add another source root to the project. Adding it manually solved the issue. It's not nice as editing anything in the project should come from maven and not from direct editing of IDEA's project options. Yet I will be able to live with it until they support build-helper-maven-plugin directly such that it will auto add the sources. Then needed another workaround to make this work though. Since each time IDEA re-imported maven settings after a pom change me newly added source was kept on module, yet it lost it's Source Folders selections and was useless. So for IDEA - need to set these once:
Now keeping those folders on import is not the best practice in the world either, ..., but giving it a try. |
|||||
|
|
This can be done in two steps:
If you work with started jetty (jetty:run), then recompilation of any class in any module (with Maven, IDEA or Eclipse) will lead to jetty's restart. The same behavior you'll get for modified resources. |
|||
|
|