aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMagnusen, Drew (dm741q) <dm741q@att.com>2017-07-26 14:01:25 -0500
committerMagnusen, Drew (dm741q) <dm741q@att.com>2017-07-26 14:07:24 -0500
commite7bd0934d383c811b0b7302c42991aa1d61941c4 (patch)
treee845030a4d10e8173b62d6f56bcc0b2790a17677
parentae2b3da4f94f0ba59708042912c941732243496f (diff)
[POLICY-81] Modified site-manager pom.xml to prevent superfluous warnings during maven build.
The addition of a <configuration> stub was added to the site-manager pom.xml. The stub excludes the org.eclipse.persitence:javax.persistence artifact from the uber-jar created by the maven-shade-plugin. The artifact was a duplicate and maven was throwing an excessive amount of warnings. Change-Id: I1eaeeb569f67aea5578af68d277f44577a20b379 Signed-off-by: Magnusen, Drew (dm741q) <dm741q@att.com>
-rw-r--r--site-manager/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/site-manager/pom.xml b/site-manager/pom.xml
index 82750743..2671a848 100644
--- a/site-manager/pom.xml
+++ b/site-manager/pom.xml
@@ -70,6 +70,13 @@
<goals>
<goal>shade</goal>
</goals>
+ <configuration>
+ <artifactSet>
+ <excludes>
+ <exclude>org.eclipse.persistence:javax.persistence</exclude>
+ </excludes>
+ </artifactSet>
+ </configuration>
</execution>
</executions>
</plugin>