java - Eclipse constantly removes src/it from souce folders -
i'm using maven-failsafe-plugin
run integration tests stored in src/it
source folder. eclipse removes .classpath
.
<classpathentry kind="src" output="target/test-classes" path="src/it"> <attributes> <attribute name="optional" value="true"/> <attribute name="maven.pomderived" value="true"/> </attributes> </classpathentry>
does face same issue? how can fix problem? i'm using eclipse mars.1 release (4.5.1)
the line
<attribute name="maven.pomderived" value="true"/>
sounds classpathentry
being placed there pom or maven plugin eclipse. mean each time project refreshed or pom being read again, entry overwritten.
can remove attribute?
Comments
Post a Comment