Guest User

Untitled

a guest
Jun 25th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <plugin>
  2. <artifactId>maven-assembly-plugin</artifactId>
  3.  
  4. <configuration>
  5. <descriptorRefs>
  6. <descriptorRef>jar-with-dependencies</descriptorRef>
  7. </descriptorRefs>
  8. <archive>
  9. <manifest>
  10. <mainClass>bagcheck.cli.BagCheckCLI</mainClass>
  11. </manifest>
  12. </archive>
  13. </configuration>
  14.  
  15. <executions>
  16. <execution>
  17. <id>make-assembly</id>
  18. <phase>package</phase>
  19. <goals>
  20. <goal>attached</goal>
  21. </goals>
  22. </execution>
  23. </executions>
  24.  
  25. </plugin>
Add Comment
Please, Sign In to add comment