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.

aspectjrt-sources-assembly.xml 1.0KB

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. <!-- Do not change this ID. It becomes the artifact classifier with appendAssemblyId=true. -->
  5. <id>sources</id>
  6. <formats>
  7. <format>jar</format>
  8. </formats>
  9. <includeBaseDirectory>false</includeBaseDirectory>
  10. <fileSets>
  11. <fileSet>
  12. <directory>../docs</directory>
  13. <outputDirectory>.</outputDirectory>
  14. <includes>
  15. <include>LICENSE-AspectJ.adoc</include>
  16. </includes>
  17. </fileSet>
  18. <fileSet>
  19. <directory>../runtime/src/main/java</directory>
  20. <outputDirectory>.</outputDirectory>
  21. <excludes>
  22. <exclude>META-INF/maven/**</exclude>
  23. </excludes>
  24. </fileSet>
  25. <fileSet>
  26. <directory>../runtime/src/main/resources</directory>
  27. <outputDirectory>.</outputDirectory>
  28. <excludes>
  29. <exclude>META-INF/maven/**</exclude>
  30. </excludes>
  31. </fileSet>
  32. </fileSets>
  33. </assembly>