Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-dependency-plugin</artifactId>
  4. <version>2.10</version>
  5. <executions>
  6. <execution>
  7. <id>copy</id>
  8. <phase>prepare-package</phase>
  9. <goals>
  10. <goal>copy</goal>
  11. </goals>
  12. <configuration>
  13. <artifactItems>
  14. <artifactItem>
  15. <groupId>org.postgresql</groupId>
  16. <artifactId>postgresql</artifactId>
  17. <version>9.4.1212</version>
  18. <type>jar</type>
  19. <outputDirectory>lib</outputDirectory>
  20. </artifactItem>
  21. </artifactItems>
  22. <!-- other configurations here -->
  23. <outputDirectory>lib</outputDirectory>
  24. </configuration>
  25. </execution>
  26. </executions>
  27. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement