Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
Currently when eclipse generates .classpath file, the subprojects' target paths default to the parent project's target path.
for example if you have a POM A which is a parent project, and POM B and C that are subprojects of A, generated classpath will have :
src/java -> target/classes
src/test -> target/test-classes
B/src/java -> target/classes
B/src/test -> target/test-classes
C/src/java -> target/classes
C/src/test -> target/test-classes
If I get a chance, I'll post a patch.
Actually I take back what I said. Currently maven-eclipse plugin doesn't support multiproject period. I forgot I had to write my own jelly tag to make it work in our multiproject environment.
I think I do have a solution for this and will post a patch (will need to modify classpath.jelly) for this whenever I can.