How can I define the source folder order in my maven pom file? I am currently using the standard maven directory layout but whenever I run the command "mvn eclipse:eclipse" the source folder order is as follows:
- src/test/java
- src/test/resources
- src/main/java
- src/main/resources
How can I have it set to:
- src/main/java
- src/main/resources
- src/test/java
- src/test/resources
The class path file generated also has the test folders before the main folders.
maven-eclipse-plugin? It's been obsolete for years. - chrylis -cautiouslyoptimistic-