Skip to content

Instantly share code, notes, and snippets.

@v0y4g3r
Created October 17, 2017 08:43
Show Gist options
  • Save v0y4g3r/2f559592665a71070701c6ac849bfe2b to your computer and use it in GitHub Desktop.
Save v0y4g3r/2f559592665a71070701c6ac849bfe2b to your computer and use it in GitHub Desktop.
[Maven shade plugin] #java #maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>lock.LockHubServer</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment