Skip to content

Instantly share code, notes, and snippets.

@JonathanLalou
Created December 21, 2017 01:49
Show Gist options
  • Save JonathanLalou/d7cfce1dd5b87637bf526543508f08f8 to your computer and use it in GitHub Desktop.
Save JonathanLalou/d7cfce1dd5b87637bf526543508f08f8 to your computer and use it in GitHub Desktop.
maven assembly plugin block to build a thin jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/resources/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment