Skip to content

Instantly share code, notes, and snippets.

@K0NRAD
Created November 24, 2015 15:52
Show Gist options
  • Save K0NRAD/bf3bca61315c8eaa0374 to your computer and use it in GitHub Desktop.
Save K0NRAD/bf3bca61315c8eaa0374 to your computer and use it in GitHub Desktop.
Executable JAR's with maven
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<archive>
<manifest>
<mainClass>path.to.your.main.Class</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment