Untitled


SUBMITTED BY: Guest

DATE: Nov. 22, 2013, 8:36 p.m.

FORMAT: Text only

SIZE: 965 Bytes

HITS: 12517

  1. project/
  2. |--tool1/
  3. | |--target/
  4. | |--tool1-jar-with-dependencies.jar
  5. |--tool2/
  6. | |--target/
  7. | |--tool2-jar-with-dependencies.jar
  8. |--tool-bundle/
  9. | |--target/
  10. | |--tool-bundle.zip?
  11. <assembly ...>
  12. <id>bin</id>
  13. <formats>
  14. <format>zip</format>
  15. </formats>
  16. <includeBaseDirectory>false</includeBaseDirectory>
  17. <moduleSets>
  18. <moduleSet>
  19. <useAllReactorProjects>true</useAllReactorProjects>
  20. <includes>
  21. <include>tool1:jar-with-dependencies</include>
  22. <include>tool2:jar-with-dependencies</include>
  23. </includes>
  24. <binaries>
  25. <outputDirectory>${artifactId}</outputDirectory>
  26. <unpack>false</unpack>
  27. </binaries>
  28. </moduleSet>
  29. </moduleSets>
  30. </assembly>

comments powered by Disqus