在Maven2中,为了排除单个传递依赖,我必须这样做:

<dependency>
  <groupId>sample.group</groupId>
  <artifactId>sample-artifactB</artifactId>
  <version>1</version>
   <exclusions>
     <exclusion>
       <groupId>sample.group</groupId>
       <artifactId>sample-artifactAB</artifactId>
     </exclusion>
   </exclusions>
</dependency>

这种方法的问题在于,我必须对sample-artifactB提供的每个传递依赖项都这样做。

是否有一种方法可以使用某种通配符一次性排除所有传递依赖项,而不是逐个排除?


当前回答

如果你在Eclipse下开发,你可以在POM编辑器(启用高级选项卡)依赖关系图中寻找你想要排除的项目依赖关系,然后:

右键单击它->“Exclude Maven Artifact…”Eclipse将为您排除,而不需要查找库链接到哪个依赖项。

其他回答

目前,没有办法一次排除一个以上的可传递依赖,但在Maven JIRA站点上有一个特性请求:

https://issues.apache.org/jira/browse/MNG-2315

对于maven2,没有办法做到您所描述的。对于maven 3,有。如果您正在使用maven 3,请参阅这个问题的另一个答案

对于maven 2,我建议为包含<exclusions>的依赖项创建自己的自定义pom。对于需要使用该依赖项的项目,将依赖项设置为自定义pom,而不是典型的工件。虽然这并不一定允许您使用单个<exclusion>排除所有传递依赖项,但它确实允许您只需编写一次依赖项,并且您的所有项目都不需要维护不必要的长排除列表。

在类路径中使用最新的maven ..它将删除重复的工件并保留最新的maven工件。

三年前我建议使用版本99 Does Not Exist,但现在我找到了一个更好的方法,特别是因为版本99是离线的:

在项目的父POM中,如果不需要的依赖项渗透到构建中,使用maven-enforcer-plugin使构建失败。这可以使用插件的禁用依赖规则来完成:

<plugin>
    <artifactId>maven-enforcer-plugin</artifactId>
    <version>1.0.1</version>
    <executions>
        <execution>
            <id>only-junit-dep-is-used</id>
            <goals>
                <goal>enforce</goal>
            </goals>
            <configuration>
                <rules>
                    <bannedDependencies>
                        <excludes>
                            <exclude>junit:junit</exclude>
                        </excludes>
                    </bannedDependencies>
                </rules>
            </configuration>
        </execution>
    </executions>
</plugin>

然后,当它提醒你一个不需要的依赖项时,将它排除在父POM的<dependencyManagement>节中:

<dependency>
    <groupId>org.springframework.batch</groupId>
    <artifactId>spring-batch-test</artifactId>
    <version>2.1.8.RELEASE</version>
    <exclusions>
        <exclusion>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </exclusion>
    </exclusions>
</dependency>

这样,不需要的依赖关系就不会意外出现(不像<exclusion>那样容易被忘记),它甚至在编译时也不可用(不像所提供的作用域),没有虚假的依赖关系(不像版本99),它可以在没有自定义存储库的情况下工作(不像版本99)。这种方法甚至可以基于工件的版本、分类器、范围或整个groupId工作——详情请参阅文档。

如果你需要排除你要包含在程序集中的依赖工件中的所有传递依赖项,你可以在程序集插件的描述符中指定:

<assembly>
    <id>myApp</id>
    <formats>
        <format>zip</format>
    </formats>
    <dependencySets>
        <dependencySet>
            <useTransitiveDependencies>false</useTransitiveDependencies>
            <includes><include>*:struts2-spring-plugin:jar:2.1.6</include></includes>
        </dependencySet>
    </dependencySets>
</assembly>