Skip to content

Commit

Permalink
Added a filter to the shade plugin config which excludes all signatur…
Browse files Browse the repository at this point in the history
…e related files. (#156)
  • Loading branch information
ntherning committed Sep 13, 2013
1 parent 194ffff commit 6741f0f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,18 @@
<mainClass>org.robovm.compiler.AppCompiler</mainClass>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
<resource>META-INF/NOTICE.txt</resource>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/NOTICE.txt</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 6741f0f

Please sign in to comment.