Skip to content

Instantly share code, notes, and snippets.

@borsch
Last active September 16, 2016 07:05
Show Gist options
  • Save borsch/32c5d79a12ae3492afb4dfc3ba945491 to your computer and use it in GitHub Desktop.
Save borsch/32c5d79a12ae3492afb4dfc3ba945491 to your computer and use it in GitHub Desktop.
create excutable jar with maven
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>path.to.Main.Class</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment