Skip to content

Instantly share code, notes, and snippets.

@ababol
Created May 1, 2013 14:13
Show Gist options
  • Save ababol/5495477 to your computer and use it in GitHub Desktop.
Save ababol/5495477 to your computer and use it in GitHub Desktop.
pom.xm => <build> => <plugins> => ajouter :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment