Guest User

Untitled

a guest
Jan 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. [INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ my-project ---
  2. [INFO] Building jar: /Users/sfrazer/projects/my-project/target/my-project-0.0.1.jar
  3. [INFO]
  4. [INFO] --- maven-assembly-plugin:2.2-beta-5:single (jar-with-dependencies) @ my-project ---
  5. [INFO] Building jar: /Users/sfrazer/projects/my-project/target/my-project-0.0.1-jar-with-dependencies.jar
  6.  
  7. <plugin>
  8. <artifactId>maven-assembly-plugin</artifactId>
  9. <configuration>
  10. <archive>
  11. <manifest>
  12. <mainClass>my.package.App</mainClass>
  13. </manifest>
  14. </archive>
  15. <descriptorRefs>
  16. <descriptorRef>jar-with-dependencies</descriptorRef>
  17. </descriptorRefs>
  18. </configuration>
  19. <executions>
  20. <execution>
  21. <id>jar-with-dependencies</id>
  22. <phase>package</phase>
  23. <goals>
  24. <goal>single</goal>
  25. </goals>
  26. </execution>
  27. </executions>
  28. </plugin>
Add Comment
Please, Sign In to add comment