Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. plugin>
  2. <artifactId>maven-assembly-plugin</artifactId>
  3. <version>2.5.4</version>
  4. <executions>
  5. <execution>
  6. <phase>package</phase>
  7. <goals>
  8. <goal>single</goal>
  9. </goals>
  10. <configuration>
  11. <finalName>zip-with-dependencies</finalName>
  12. <appendAssemblyId>false</appendAssemblyId>
  13. <descriptors>
  14. <descriptor>src/main/assembly/zip.xml</descriptor>
  15. </descriptors>
  16. </configuration>
  17. </execution>
  18. </executions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement