Add the ability to generate an UBER-JAR, thus allowing this project to be used by 3rd-parties as a dependency.

This commit is contained in:
Lampros Smyrnaios 2023-12-04 17:34:02 +02:00
parent 7693532124
commit 2c6e0b4008
1 changed files with 39 additions and 0 deletions

39
pom.xml
View File

@ -35,6 +35,45 @@
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<!-- filter manifest signature files when creating uber-jar -->
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>LICENSE*</exclude>
</excludes>
</filter>
</filters>
<createDependencyReducedPom>false</createDependencyReducedPom>
<!-- The minimized-JAR may cause problems in 3rd-party apps using this as dependency. -->
<!--<minimizeJar>true</minimizeJar>-->
</configuration>
</execution>
</executions>
</plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<configuration>
</configuration>
</plugin>-->
</plugins>
</build>