Skip to content

Instantly share code, notes, and snippets.

@vandeseer
Created December 4, 2016 17:21
Show Gist options
  • Save vandeseer/2c516d7fb23976143e3e9fb1c8928085 to your computer and use it in GitHub Desktop.
Save vandeseer/2c516d7fb23976143e3e9fb1c8928085 to your computer and use it in GitHub Desktop.
Maven build assembly with dependencies included
<!-- mvn clean compile assembly:single -->
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment