Advertisement
tmax

Untitled

Sep 19th, 2014
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <plugin>
  2. <!-- Copy all dependencies of the app to target folder-->
  3. <groupId>org.apache.maven.plugins</groupId>
  4. <artifactId>maven-dependency-plugin</artifactId>
  5. <version>2.3</version>
  6. <executions>
  7. <execution>
  8. <id>copy-dependencies</id>
  9. <phase>package</phase>
  10. <configuration>
  11. <overWriteReleases>false</overWriteReleases>
  12. <overWriteSnapshots>false</overWriteSnapshots>
  13. <overWriteIfNewer>true</overWriteIfNewer>
  14. </configuration>
  15. <goals>
  16. <goal>copy-dependencies</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement