Update pom.xml to build uberjar

This commit is contained in:
Banks Troutman
2019-09-21 19:50:18 -04:00
parent 3d1de034c7
commit 2ddddd2955
2 changed files with 15 additions and 0 deletions

2
.gitignore vendored
View File

@@ -109,3 +109,5 @@ Main/.gradle
Main/target
New client/chameleon-client/node_modules/
Main/dependency-reduced-pom.xml
Main/src/main/java/META-INF

View File

@@ -17,6 +17,19 @@
<release>12</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>