You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ph...@apache.org on 2017/06/13 23:13:01 UTC

incubator-juneau git commit: Updated microservice pom file to package uber-jar with signed jars as well.

Repository: incubator-juneau
Updated Branches:
  refs/heads/master 44c90a43c -> ad314d42e


Updated microservice pom file to package uber-jar with signed jars as
well. 

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/ad314d42
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/ad314d42
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/ad314d42

Branch: refs/heads/master
Commit: ad314d42ee627338c0eab571b1b99f8eb9977c41
Parents: 44c90a4
Author: Peter Haumer <ph...@apache.org>
Authored: Tue Jun 13 16:12:59 2017 -0700
Committer: Peter Haumer <ph...@apache.org>
Committed: Tue Jun 13 16:12:59 2017 -0700

----------------------------------------------------------------------
 juneau-microservice-template/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ad314d42/juneau-microservice-template/pom.xml
----------------------------------------------------------------------
diff --git a/juneau-microservice-template/pom.xml b/juneau-microservice-template/pom.xml
index 63a2320..7c49274 100644
--- a/juneau-microservice-template/pom.xml
+++ b/juneau-microservice-template/pom.xml
@@ -78,6 +78,18 @@
 						<goals>
 							<goal>shade</goal>
 						</goals>
+						<configuration>
+							<filters>
+								<filter>
+									<artifact>*:*</artifact>
+									<excludes>
+										<exclude>META-INF/*.SF</exclude>
+										<exclude>META-INF/*.RSA</exclude>
+										<exclude>META-INF/*.INF</exclude> <!-- This one may not be required -->
+									</excludes>
+								</filter>
+							</filters>
+						</configuration>
 					</execution>
 				</executions>
 			</plugin>