[POLICY-81] Modified site-manager pom.xml to prevent superfluous warnings during... 79/6279/1
authorMagnusen, Drew (dm741q) <dm741q@att.com>
Wed, 26 Jul 2017 19:01:25 +0000 (14:01 -0500)
committerMagnusen, Drew (dm741q) <dm741q@att.com>
Wed, 26 Jul 2017 19:07:24 +0000 (14:07 -0500)
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>
site-manager/pom.xml

index 8275074..2671a84 100644 (file)
                                                <goals>
                                                        <goal>shade</goal>
                                                </goals>
+                                               <configuration>
+                                                       <artifactSet>
+                                                               <excludes>
+                                                                       <exclude>org.eclipse.persistence:javax.persistence</exclude>
+                                                               </excludes>
+                                                       </artifactSet>
+                                               </configuration>        
                                        </execution>
                                </executions>
                        </plugin>