Skip to content

Commit

Permalink
Fix shade plugin warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Sep 14, 2024
1 parent 826a88d commit fbf7885
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,16 @@
</transformers>
<filters>
<filter>
<!--
Shading signed JARs will fail without this.
http://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar
-->
<artifact>*:*</artifact>
<excludes>
<exclude>module-info.class</exclude>
<exclude>overview.html</exclude>
<exclude>META-INF/*.txt</exclude>
<exclude>META-INF/*.MF</exclude>
<!--
Shading signed JARs will fail without this.
http://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar
-->
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down

0 comments on commit fbf7885

Please sign in to comment.