Skip to content

Instantly share code, notes, and snippets.

@winteryoung
Created March 6, 2016 08:13
Show Gist options
  • Save winteryoung/cf2569590675546adb3f to your computer and use it in GitHub Desktop.
Save winteryoung/cf2569590675546adb3f to your computer and use it in GitHub Desktop.
uber jar - assembly plugin
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<descriptor>/assembly.xml</descriptor>
</configuration>
<executions>
<execution>
<id>create-archive</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment