1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-07 19:29:27 +00:00

Update pom.xml

- Switched from maven-assembly-plugin to maven-shade-plugin
  for final packaging
- Updated maven-jar-plugin to 3.2.0
This commit is contained in:
Seth Morabito 2021-09-25 10:46:36 -07:00
parent 4644fe9b55
commit 4ce8bc86de
2 changed files with 20 additions and 12 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ target
.DS_Store .DS_Store
.idea .idea
symon.iml symon.iml
/dependency-reduced-pom.xml

31
pom.xml
View File

@ -44,24 +44,31 @@
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>2.6</version> <version>3.2.0</version>
<configuration> <configuration>
<descriptorRefs> <transformers>
<descriptorRef>jar-with-dependencies</descriptorRef> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass>com.loomcom.symon.Main</mainClass> <mainClass>com.loomcom.symon.Main</mainClass>
</manifest> </transformer>
</archive> </transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>make-assembly</id>
<phase>package</phase> <phase>package</phase>
<goals> <goals>
<goal>single</goal> <goal>shade</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
@ -81,7 +88,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.6</version> <version>3.2.0</version>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>