2012-09-05 61 views
3

我可以在我的pom中設置classpathContainer參數,用於命令eclipse的Maven Eclipse Plugin配置。如果我設置:Maven Eclipse插件classpathContainer的屬性?

<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?

在此先感謝。

回答