您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

aspectjrt-assembly.xml 569B

123456789101112131415161718192021222324
  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>aspectjrt</id>
  5. <formats>
  6. <format>jar</format>
  7. </formats>
  8. <includeBaseDirectory>false</includeBaseDirectory>
  9. <fileSets>
  10. <fileSet>
  11. <directory>../runtime/target/classes</directory>
  12. <outputDirectory>.</outputDirectory>
  13. <excludes>
  14. <exclude>META-INF/maven/**</exclude>
  15. </excludes>
  16. </fileSet>
  17. </fileSets>
  18. </assembly>