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 <[email protected]> Authored: Tue Jun 13 16:12:59 2017 -0700 Committer: Peter Haumer <[email protected]> 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>
