Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. mvn clean compile install
  2.  
  3. mvn clean compile install
  4. mvn clean compile install-fatjar
  5.  
  6. <profiles>
  7. <profile>
  8. <id>fatjar</id>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-assembly-plugin</artifactId>
  13. <configuration>
  14. <archive>
  15. <manifest>
  16. <mainClass>fully.qualified.MainClass</mainClass>
  17. </manifest>
  18. </archive>
  19. <descriptorRefs>
  20. <descriptorRef>jar-with-dependencies</descriptorRef>
  21. </descriptorRefs>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. </profile>
  27. </profiles>
  28.  
  29. mvn -P fatjar clean install
  30.  
  31. mvn -P fatjar,release install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement