Guest User

Untitled

a guest
Aug 10th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Maven Assembly Plugin - Include other child dependencies in assembly
  2. ...
  3. <plugin>
  4. <artifactId>maven-assembly-plugin</artifactId>
  5. <inherited>true</inherited>
  6. <configuration>
  7. <descriptors>
  8. <descriptor>desc.xml</descriptor>
  9. </descriptors>
  10. </configuration>
  11. ...
  12.  
  13. ...
  14.  
  15. <moduleSets>
  16. <moduleSet>
  17. <binaries>
  18. <unpack>false</unpack>
  19. <dependencySets>
  20. <dependencySet>
  21. <unpack>false</unpack>
  22. <scope>runtime</scope>
  23. <outputDirectory>lib</outputDirectory>
  24. </dependencySet>
  25. </dependencySets>
  26. </binaries>
  27. </moduleSet>
  28. </moduleSets>
  29. ...
Add Comment
Please, Sign In to add comment