I use the shade maven plugin to build my project so that all of its dependencies are included in one jar (this makes it easier to run it on Hadoop). Shade seems to exclude my test code by default, which is understandable. Since I would like to run integration tests against my cluster, I am hoping to setup another profile to build a separate jar for this purpose. Is there any way to configure this plugin to also include test code?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try
|
|||
|
<plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>test-jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin>Depend on that test jar with the "tests" classifier:<dependency> <groupId>com.abc</groupId> <artifactId>blah</artifactId> <version>1.0</version> <classifier>tests</classifier> <scope>test</scope> </dependency>– Patrick Marchwiak Oct 28 '11 at 17:55