Guest User

Untitled

a guest
Jun 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. ...
  2. <build>
  3. <plugins>
  4. <plugin>
  5. <groupId>org.apache.maven.plugins</groupId>
  6. <artifactId>maven-assembly-plugin</artifactId>
  7. <configuration>
  8. <descriptorId>jar-with-dependencies</descriptorId>
  9. <archive>
  10. <manifestFile>
  11. src/main/resources/META-INF/MANIFEST.MF
  12. </manifestFile>
  13. </archive>
  14. </configuration>
  15. <executions>
  16. <execution>
  17. <id>build</id>
  18. <phase>package</phase>
  19. <goals>
  20. <goal>assembly</goal>
  21. </goals>
  22. </execution>
  23. </executions>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. ...
Add Comment
Please, Sign In to add comment