Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <modelVersion>4.0.0</modelVersion>
  2. <parent>
  3. <groupId>swt1</groupId>
  4. <artifactId>iMage</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. </parent>
  7. <artifactId>iMage.iCatcher</artifactId>
  8. <name>iMage.iCatcher</name>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-jar-plugin</artifactId>
  14. <configuration>
  15. <archive>
  16. <manifest>
  17. <addClasspath>true</addClasspath>
  18. <mainClass>iMage.iCatcher.GUI</mainClass>
  19. <addDefaultImplementationEntries>
  20. true
  21. </addDefaultImplementationEntries>
  22. <addDefaultSpecificationEntries>
  23. true
  24. </addDefaultSpecificationEntries>
  25. </manifest>
  26. </archive>
  27. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-dependency-plugin</artifactId>
  32. <executions>
  33. <execution>
  34. <id>copy-dependencies</id>
  35. <phase>package</phase>
  36. <goals>
  37. <goal>copy-dependencies</goal>
  38. </goals>
  39. <configuration>
  40. <useRepositoryLayout>true</useRepositoryLayout>
  41. <useBaseVersion>true</useBaseVersion>
  42. <overWriteSnapshots>true</overWriteSnapshots>
  43. <overWriteIfNewer>true</overWriteIfNewer>
  44. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  45. <includeScope>runtime</includeScope>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement