我可以在我的 pom 中设置 classpathContainer 参数,以便为命令 eclipse:eclipse 配置 Maven Eclipse 插件。如果我设置:
<classpathContainers>
<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_29</classpathContainer>
</classpathContainers>
我进入我的.class
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_29"/>
但是我需要:
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_29">
<attributes>
<attribute name="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
如何向 classpathContainer 添加属性?
提前致谢。