Skip to content

Commit

Permalink
Exclude signature files from bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
timkral committed May 10, 2018
1 parent 3548f70 commit e3a085b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,17 @@
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<!-- Exclude signature files from any bundle -->
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<minimizeJar>${maven-shade-plugin.minimizeJar}</minimizeJar>
<!-- Relocation common packages that applications may want to upgrade -->
<relocations>
Expand Down

0 comments on commit e3a085b

Please sign in to comment.