Skip to content

Instantly share code, notes, and snippets.

@xhanin
Created April 5, 2014 12:26
Show Gist options
  • Save xhanin/9991345 to your computer and use it in GitHub Desktop.
Save xhanin/9991345 to your computer and use it in GitHub Desktop.
maven copy dependencies fragment
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals><goal>copy-dependencies</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment