我的项目包含2个罐子
core.jar - parent
ui.war - 孩子
在ui.pom.xml中我写道这个模块依赖于core.jar
在ui测试中,我想使用源代码核心测试。我该如何配置呢?
答案 0 :(得分:0)
您可以使用如下测试jar:
<project>
...
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
...
</project>
使您有机会在其他项目中使用测试类。只需在其他项目中定义依赖关系,如下所示:
<project>
...
<dependencies>
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<type>test-jar</type>
<version>version</version>
<scope>test</scope>
</dependency>
</dependencies>
...
</project>
但是不可能使用源代码核心测试。
答案 1 :(得分:0)
您需要配置核心以创建包含测试代码的jar,然后使用分类器“test-jar”和范围“test”在ui中引用,请参阅:http://maven.apache.org/guides/mini/guide-attached-tests.html