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
答案 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)
有两个步骤:
有一个关于使用maven为scala项目配置eclipse的目的,但这应该涵盖您的需求。您只需编辑源文件夹和包含模式:
https://www.assembla.com/spaces/scala-ide/wiki/With_Maven_CLI
**更新**
或使用此资源的默认文件夹src/main/resources