REPO-2724 Add building of tests jar

This commit is contained in:
Alex Mukha
2017-07-28 15:13:58 +01:00
parent 5091f63f62
commit f68b4b2c51

15
pom.xml
View File

@@ -1096,7 +1096,20 @@
</resource>
</resources>
<plugins>
<plugins>
<!-- Create a jar of test classes -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>create-test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>