I have a maven project that I built correctly through the command line ( mvn test). It is structured as follows:
pom.xml
|
|
|
Inside each of the dir subprojects (subdir [1-3]) I have a structure:
src/main/java
src/test/java
When I import a project into Eclipse or update the maven configuration (Alt-F5), the servers are srcincorrectly added to BuildPath. I always need to manually remove them and add each of the javadirs to compile Eclipse correctly.
How do I set up my project so that Eclipse always correctly adds build paths?
neves source
share