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 853B

1234567891011121314151617181920212223242526272829303132
  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>../runtime/src/main/java</directory>
  13. <outputDirectory>.</outputDirectory>
  14. <excludes>
  15. <exclude>META-INF/maven/**</exclude>
  16. </excludes>
  17. </fileSet>
  18. <fileSet>
  19. <directory>../runtime/src/main/resources</directory>
  20. <outputDirectory>.</outputDirectory>
  21. <excludes>
  22. <exclude>META-INF/maven/**</exclude>
  23. </excludes>
  24. </fileSet>
  25. </fileSets>
  26. </assembly>