diff options
Diffstat (limited to 'org.eclipse.jgit.pgm/pom.xml')
-rw-r--r-- | org.eclipse.jgit.pgm/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/org.eclipse.jgit.pgm/pom.xml b/org.eclipse.jgit.pgm/pom.xml index ff80bebf0d..19d73c08c7 100644 --- a/org.eclipse.jgit.pgm/pom.xml +++ b/org.eclipse.jgit.pgm/pom.xml @@ -50,7 +50,7 @@ <parent> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit-parent</artifactId> - <version>3.1.0-SNAPSHOT</version> + <version>3.1.1-SNAPSHOT</version> </parent> <artifactId>org.eclipse.jgit.pgm</artifactId> @@ -178,6 +178,20 @@ </manifestEntries> </transformer> </transformers> + <filters> + <!-- exclude the signing data for individual jars, ueberjar will be signed again --> + <filter> + <artifact>*:*</artifact> + <excludes> + <exclude>META-INF/*.SF</exclude> + <exclude>META-INF/*.DSA</exclude> + <exclude>META-INF/*.RSA</exclude> + <exclude>OSGI-OPT/**</exclude> + </excludes> + </filter> + </filters> + <shadedArtifactAttached>true</shadedArtifactAttached> + <shadedClassifierName>shaded</shadedClassifierName> <!-- Any name that makes sense --> </configuration> </execution> </executions> |