Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:22
Show Gist options
  • Save ezhov-da/b06d74d140fcd3405bf807f65d53a828 to your computer and use it in GitHub Desktop.
Save ezhov-da/b06d74d140fcd3405bf807f65d53a828 to your computer and use it in GitHub Desktop.
java maven build jar
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins&lt;/groupId>
<artifactId>maven-jar-plugin&lt;/artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true&lt;/addClasspath>
<mainClass>ru.ezhov.keyboardFingers.App&lt;/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