如何在我的java项目中引用maven依赖的单元测试类?

前端之家收集整理的这篇文章主要介绍了如何在我的java项目中引用maven依赖的单元测试类?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在项目A的测试包src / test / java中引用项目B中的一些JUnit测试(src / test / java),而B是A的maven依赖项.

这甚至可能吗?

<dependency>
    <groupId>XYZ</groupId>
    <artifactId>B</artifactId>
    <version>${project.version}</version>
    <type>jar</type>
    <scope>test</scope>
</dependency>

这两个项目都在我的控制之下.

谢谢你的建议

解决方法

你在项目B中的pom需要包含这个插件
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.5</version>
    <executions>
        <execution>
            <goals>
                <goal>test-jar</goal>
            </goals>
        </execution>
    </executions>
</plugin>

然后,您可以从项目A访问它,如下所示:

<dependency>
    <groupId>XYZ</groupId>
    <artifactId>B</artifactId>
    <version>${project.version}</version>
    <type>test-jar</type>
    <scope>test</scope>
</dependency>

将“type”更改为test-jar允许您从该依赖项访问测试类.

原文链接:https://www.f2er.com/java/121331.html

猜你在找的Java相关文章