我正在使用maven-failsafe-plugin
来运行存储在src/it
源文件夹中的集成测试。但eclipse会不断地将其从.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>
有人面临同样的问题吗?我该如何解决这个问题?
我正在使用Eclipse Mars.1 Release (4.5.1)
答案 0 :(得分:1)
该行
<attribute name="maven.pomderived" value="true"/>
听起来像classpathentry
被放置在那里用于日食的pom或maven插件。这意味着每次刷新项目或再次读取pom时,此条目都将被覆盖。
你能删除该属性吗?