summaryrefslogtreecommitdiffstats
path: root/common/pom.xml
diff options
context:
space:
mode:
authorBenjamin, Max <max.benjamin@att.com>2019-11-08 10:32:10 -0500
committerBenjamin, Max (mb388a) <mb388a@att.com>2019-11-08 10:32:10 -0500
commit7e3721198f51220376a7f9b8c822a68fc057aa2d (patch)
tree0d79bd07e21214e9211fa402e1b63a3060944419 /common/pom.xml
parentdd7d3c1900cfa933d6ad84348b8abb43e290150e (diff)
removed global configuration of jar plugin
removed global configuration of jar plugin to prevent extra artifacts Issue-ID: SO-2518 Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com> Change-Id: I5b25150089f39792452cf67cac1c916ef2069bed
Diffstat (limited to 'common/pom.xml')
-rw-r--r--common/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/common/pom.xml b/common/pom.xml
index cd6f01641a..3690d7b5a1 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -245,6 +245,23 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.0.2</version>
+ <executions>
+ <execution>
+ <id>tests-jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>