0

运行 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>
4

1 回答 1

1

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

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

于 2014-04-26T01:07:04.647 回答