让maven将类路径条目添加到eclipse项目中

时间:2014-04-04 21:52:20

标签: java maven maven-3

Maven可以通过运行" mvn eclipse来生成eclipse项目文件:eclipse"

当我从Eclipse IDE运行某个类时,它将类路径条目设置为

target/test-classes
target/classes
*many paths to maven artifacts used in project"

但是,我想在.project中编写其他类路径条目 如何让maven做到这一点?

我使用maven 3.1.1

2 个答案:

答案 0 :(得分:0)

pom.xml中添加其他必需条目作为依赖项,如果这些是目录,则只需编辑.classpath文件

然后不要使用eclipse:eclipse并使用

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

并为您的目录添加条目

答案 1 :(得分:0)

有两个步骤:

  1. 将另一个文件夹作为源文件夹添加到maven
  2. 将正确的包含添加到maven-eclipse-plugin
  3. 有一个关于使用maven为scala项目配置eclipse的目的,但这应该涵盖您的需求。您只需编辑源文件夹和包含模式:

    https://www.assembla.com/spaces/scala-ide/wiki/With_Maven_CLI

    **更新**

    或使用此资源的默认文件夹src/main/resources