我使用shade maven插件来构建我的项目,以便它的所有依赖项都包含在一个jar中(这使得在Hadoop上运行它更容易)。默认情况下,Shade似乎排除了我的测试代码,这是可以理解的。由于我想对我的集群运行集成测试,我希望设置另一个配置文件来为此目的构建一个单独的jar。有没有办法配置这个插件还包括测试代码?
答案 0 :(得分:6)
使用版本2.2的maven-shade-plugin,他们添加了一个" shadeTestJar"选项(参见MSHADE-158):http://maven.apache.org/plugins/maven-shade-plugin/shade-mojo.html#shadeTestJar
然而,我尝试使用它并且无法使其工作。这是我的插件配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadeTestJar>true</shadeTestJar>
</configuration>
</execution>
</executions>
</plugin>
&#34; ...- tests.jar&#34;文件没有条目,但主阴影jar看起来很好(虽然它不包含任何测试类)。
此外,这个问题重复了另一个问题,尽管接受的答案并不令人满意:How to include test classes in Jar created by maven-shade-plugin?
答案 1 :(得分:4)
最后几个答案对于破损的功能来说是凌乱的解决方法。问题的事实仍然是maven-shade-plugin
中存在错误。与此同时,我已经调查并根本导致了该错误,并创建了patch。现在我希望Apache的某个人很快就会包含它,然后最终shadeTestJar
功能可以像它应该的那样工作。
答案 2 :(得分:2)
我设法通过添加:
来使其发挥作用<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/test/java/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
答案 3 :(得分:0)
尝试include
这样的测试包:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.maven:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
答案 4 :(得分:0)
使用上面~steve -k解释的maven-shade-plugin
是正确的,遗憾的是由于错误shadeTestJar
不起作用,结果测试JAR为空。