Maven Eclipse插件 - 每个的类路径条目?

时间:2014-04-25 18:49:54

标签: eclipse maven maven-eclipse-plugin

运行maven Eclipse插件后,我的.classpath包含所有依赖项,如下所示:

  <classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.6/commons-lang-2.6.jar" sourcepath="M2_REPO/commons-lang/commons-lang/2.6/commons-lang-2.6-sources.jar"/>

有没有办法让它只包含maven类路径容器,就像这样?

<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
    <attributes>
        <attribute name="maven.pomderived" value="true"/>
    </attributes>
</classpathentry>

1 个答案:

答案 0 :(得分:1)

Eclipse m2e插件的重点在于,您不必担心Eclipse类路径 - m2e会自动处理包含pom.xml中列出的依赖项的内容。 瞧!

事实上,建议您在使用pom.xml时弄乱项目类路径。