在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提供的每个传递依赖项都这样做。
是否有一种方法可以使用某种通配符一次性排除所有传递依赖项,而不是逐个排除?
三年前我建议使用版本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工作——详情请参阅文档。