我有一个项目A,它有一些测试资源。 项目B的POM文件具有项目A的依赖性。
如何在项目B的测试用例中使用项目A中的测试资源。
答案 0 :(得分:3)
在Maven你必须依赖一些神器。除非将测试打包到jar文件中,否则您无法依赖它们。因此,您需要将资源移动到生产代码中,或者需要create jar with tests:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
然后你可以依赖它:
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<type>test-jar</type>
<version>version</version>
<scope>test</scope>
</dependency>