Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 2.8
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
One of the main issues with trying to configure a groovy / maven project within eclipse is that one must manually configure the classpath each time a project is materialized from SCM or created anew.
It would be extremely helpful if one could specify classpathentry}}s to be generated in {{.classpath so that when eclipse:eclipse or eclipse:m2eclipse is performed the following is produced:
<classpathentry kind="src" output="target/classes" path="src/main/java" including="**/*.java"/> <classpathentry kind="src" output="target/classes" path="src/main/groovy" including="**/*.groovy"/> <classpathentry kind="src" output="target/test-classes" path="src/test/java" including="**/*.java"/> <classpathentry kind="src" output="target/test-classes" path="src/test/groovy" including="**/*.groovy"/>