我必须在运行mvn eclipse:eclipse命令时排除在eclipse .classpath文件中添加的一个jar。我如何实现这一目标?
答案 0 :(得分:0)
您可以使用此处所述的exceludes参数:http://maven.apache.org/plugins/maven-eclipse-plugin/eclipse-mojo.html#excludes
另见:
答案 1 :(得分:0)
这种情况有点晚了,但是对于那些仍在使用mvn eclipse:eclipse以及在eclipse类路径条目中排除某些依赖项的内容
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.10</version>
<configuration>
<excludes>
<exclude>org.springframework:spring-asm</exclude>
</excludes>
</configuration>
</plugin>