Skip to content

Instantly share code, notes, and snippets.

@refactormyself
Created July 1, 2019 09:00
Show Gist options
  • Save refactormyself/5bcafaf5c6b1d16954f1104e1f778f90 to your computer and use it in GitHub Desktop.
Save refactormyself/5bcafaf5c6b1d16954f1104e1f778f90 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
net.saheed.MyExecutableMavenJar
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment