Skip to content

Instantly share code, notes, and snippets.

@shuji
Created December 12, 2012 06:12
Show Gist options
  • Save shuji/4265372 to your computer and use it in GitHub Desktop.
Save shuji/4265372 to your computer and use it in GitHub Desktop.
Maven snipet - assembly with dependencies
<!-- mvn assembly:assembly -->
<!-- http://maven.apache.org/plugins/maven-assembly-plugin/ -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment