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.

aspectjmatcher-assembly.xml 956B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
  4. <id>aspectjmatcher</id>
  5. <formats>
  6. <format>jar</format>
  7. </formats>
  8. <includeBaseDirectory>false</includeBaseDirectory>
  9. <fileSets>
  10. <fileSet>
  11. <directory>../util/target/classes</directory>
  12. <outputDirectory>.</outputDirectory>
  13. <excludes>
  14. <exclude>META-INF/maven/**</exclude>
  15. </excludes>
  16. </fileSet>
  17. <fileSet>
  18. <directory>../bridge/target/classes</directory>
  19. <outputDirectory>.</outputDirectory>
  20. <excludes>
  21. <exclude>META-INF/maven/**</exclude>
  22. </excludes>
  23. </fileSet>
  24. <fileSet>
  25. <directory>../org.aspectj.matcher/target/classes</directory>
  26. <outputDirectory>.</outputDirectory>
  27. <excludes>
  28. <exclude>META-INF/maven/**</exclude>
  29. </excludes>
  30. </fileSet>
  31. </fileSets>
  32. </assembly>