在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提供的每个传递依赖项都这样做。

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


当前回答

你排除所有传递依赖的原因是什么?

如果您需要从每个依赖项中排除一个特定的工件(例如common -logging), Version 99 Does Not Exist方法可能会有所帮助。


2012年更新:不要使用这种方法。使用maven-enforcer-plugin和排除。版本99产生了虚假的依赖关系,并且版本99存储库处于离线状态(有类似的镜像,但您也不能依赖它们永远保持在线状态;最好只使用Maven Central)。

其他回答

在一个类似的问题中,我声明了所需的依赖项,并提供了作用域。 使用这种方法,可传递依赖项会被获取,但不会包含在包阶段,这正是您想要的。 我也喜欢这个解决方案在维护方面,因为没有pom,或自定义pom在whaley的解决方案,需要维护;您只需要在容器中提供特定的依赖项就可以了

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

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

我使用以下的解决方法:而不是试图在所有适当的依赖项中排除工件,我在顶层将依赖项绘制为“提供”。 例如,为了避免发布xml-api的“任何版本”:

    <dependency>
        <groupId>xml-apis</groupId>
        <artifactId>xml-apis</artifactId>
        <version>[1.0,]</version>
        <scope>provided</scope>
    </dependency>

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

<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>

你排除所有传递依赖的原因是什么?

如果您需要从每个依赖项中排除一个特定的工件(例如common -logging), Version 99 Does Not Exist方法可能会有所帮助。


2012年更新:不要使用这种方法。使用maven-enforcer-plugin和排除。版本99产生了虚假的依赖关系,并且版本99存储库处于离线状态(有类似的镜像,但您也不能依赖它们永远保持在线状态;最好只使用Maven Central)。