Ignore manifest signatures for shading

Related #1630 "Invalid Signature digest for Manifest main attributes"
caused by files in BCrypt library.
This commit is contained in:
games647 2018-09-04 19:11:59 +02:00
parent b22f26822b
commit 81821b23b3
No known key found for this signature in database
GPG Key ID: BFC68C8708713A88
1 changed files with 12 additions and 0 deletions

12
pom.xml
View File

@ -309,6 +309,18 @@
<shadedPattern>fr.xephi.authme.libs.org.postgresql</shadedPattern>
</relocation>
</relocations>
<filters>
<!-- Ignore manifest signatures for shading the project into an uber-jar to fix -->
<!-- "Invalid signature file digest for Manifest main attributes" -->
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>