我想将我的测试包打包到 jar 文件中。如何从 maven 插件 Surefire 执行生成 test-jar。
user1714259
问问题
23309 次
2 回答
40
通过使用以下配置,您可以从测试中创建一个 jar:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
要使用这种工件:
<dependencies>
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<type>test-jar</type>
<version>version</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
于 2012-10-10T21:26:27.643 回答
23
您可以将以下条目添加到您的 pom 中:
<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>
于 2012-10-10T21:29:18.190 回答