Fix sources attachment + MANIFSET overlaps

This commit is contained in:
AFaust
2025-02-21 13:57:34 +01:00
committed by Axel Faust
parent fc83b6c7a5
commit 725f768535
4 changed files with 32 additions and 4 deletions

View File

@@ -137,6 +137,13 @@
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<classifier>sources-unshaded</classifier>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
@@ -176,6 +183,20 @@
<addHeader>false</addHeader>
</transformer>
</transformers>
<filters>
<filter>
<artifact>org.keycloak:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
<filter>
<artifact>org.jboss.logging:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>