jar-with-dependencies和托管依赖

时间:2015-07-29 21:00:03

标签: maven junit

我们有一个包含大约十几个子项目的父项目。大多数子项目都有测试,因此它们依赖于JUnit。我认为将它作为托管依赖项提取到父pom是有意义的:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

在我的一个子项目中 - 仍在努力清理这个 - 我在构建期间需要JUnit。所以在那个pom我现在有:

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>compile</scope>
    </dependency>

这很好用。 事情崩溃的部分是,该项目还需要构建为具有依赖关系的jar,使用:

        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <finalName>TestIntegration</finalName>
            </configuration>
        </plugin>

jar-with-dependencies缺少JUnit。请注意,如果我将JUnit作为托管依赖项删除,并将其指定为该项目中的普通依赖项,那么一切都可以正常构建。

如何将jar作为测试范围内的托管依赖项添加到jar-with-dependencies中?

1 个答案:

答案 0 :(得分:6)

托管依赖项用于锁定父pom上的版本。这并不意味着junit会自动成为子项目的依赖。

您需要将其指定为子项或父pom中的依赖项,以便将其包含在超级jar中

更新:我误解了这个问题,并认为OP正在询问是否只使用依赖项mgmt中声明的依赖项。

  

如何将jar作为测试范围内的托管依赖项添加到   罐与 - 依赖性?

依赖关系管理优先于依赖关系部分中声明的依赖关系 - 因此,使用范围编译重新定义依赖关系中的依赖关系将不起作用。要解决此问题,请在子pom的依赖关系管理部分中重新定义依赖关系。

所以你的父母pom有:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

将此添加到您的孩子pom:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</dependencyManagement>