You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test-jar-with-dependencies.xml 800B

12345678910111213141516171819
  1. <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
  4. <id>test-jar-with-dependencies</id>
  5. <formats>
  6. <format>jar</format>
  7. </formats>
  8. <includeBaseDirectory>false</includeBaseDirectory>
  9. <dependencySets>
  10. <dependencySet>
  11. <outputDirectory>/</outputDirectory>
  12. <useProjectArtifact>true</useProjectArtifact>
  13. <!-- we're creating the test-jar as an attachement -->
  14. <useProjectAttachments>true</useProjectAttachments>
  15. <unpack>true</unpack>
  16. <scope>test</scope>
  17. </dependencySet>
  18. </dependencySets>
  19. </assembly>