排除所有依赖项的所有传递依赖项?

时间:2017-03-08 12:43:34

标签: java maven-2

我正在开发一个maven项目,我需要排除所有传递依赖项。我见过在“dependency”标签中使用的“exclude”标签。但我有很多依赖项,并且在每个依赖项中编写此标记是一项艰巨的任务。那么有什么方法可以更容易地排除所有传递依赖?

1 个答案:

答案 0 :(得分:3)

Ever since Maven 3.2.1,您可以在依赖项排除中使用通配符。

<dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-embedder</artifactId>
      <version>3.1.0</version>
      <exclusions>
        <exclusion>
          <groupId>*</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    ...
</dependencies>

您仍然需要将通配符排除插入到每个依赖项中。

这是一个带有Groovy脚本(通过Groovy Maven Plugin执行)的示例pom,它排除了所有传递依赖项:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.test</groupId>
    <artifactId>non-transitive-deps</artifactId>
    <version>1.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.gmaven</groupId>
                <artifactId>groovy-maven-plugin</artifactId>
                <version>2.0</version>
                <executions>
                    <execution>
                        <id>exclude-transitive-deps</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>execute</goal>
                        </goals>
                        <configuration>
                            <source>
                                def exclusion = new org.apache.maven.model.Exclusion();
                                exclusion.groupId='*'
                                exclusion.artifactId='*'
                                project.dependencies.each{
                                    d -> d.addExclusion(exclusion)
                                }
                            </source>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>4.3.7.RELEASE</version>
        </dependency>
   </dependencies>
</project>

mvn dependency:tree的输出:

[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ non-transitive-deps ---
[INFO] org.test:non-transitive-deps:jar:1.0-SNAPSHOT
[INFO] \- org.springframework:spring-orm:jar:4.3.7.RELEASE:compile
[INFO]    +- org.springframework:spring-beans:jar:4.3.7.RELEASE:compile
[INFO]    +- org.springframework:spring-core:jar:4.3.7.RELEASE:compile
[INFO]    |  \- commons-logging:commons-logging:jar:1.2:compile
[INFO]    +- org.springframework:spring-jdbc:jar:4.3.7.RELEASE:compile
[INFO]    \- org.springframework:spring-tx:jar:4.3.7.RELEASE:compile

mvn validate dependency:tree的输出:

[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ non-transitive-deps ---
[INFO] org.test:non-transitive-deps:jar:1.0-SNAPSHOT
[INFO] \- org.springframework:spring-orm:jar:4.3.7.RELEASE:compile

因此,虽然这个groovy脚本解决了您的问题,但只有在执行Maven生命周期阶段时才会这样做(而不是直接触发插件目标)。 validate是生命周期中最早的阶段,早在依赖性解决发生之前。

不,我不知道任何不那么冗长的解决方案。