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.

pom.xml 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.aspectj</groupId>
  8. <artifactId>aspectj-parent</artifactId>
  9. <version>1.9.7.BUILD-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>aspectjmatcher</artifactId>
  12. <packaging>pom</packaging>
  13. <name>AspectJ Matcher</name>
  14. <build>
  15. <plugins>
  16. <!-- skip creation of test-jar in here -->
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-jar-plugin</artifactId>
  20. <executions>
  21. <execution>
  22. <id>test-jar</id>
  23. <phase></phase>
  24. </execution>
  25. </executions>
  26. </plugin>
  27. <!--
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-antrun-plugin</artifactId>
  31. <version>1.6</version>
  32. <executions>
  33. <execution>
  34. <id>unzipasm</id>
  35. <phase>validate</phase>
  36. <configuration>
  37. <tasks>
  38. <echo message="unzip jarjar'd asm" />
  39. <unzip
  40. src="${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar"
  41. dest="target/asm-unzipped" />
  42. </tasks>
  43. </configuration>
  44. <goals>
  45. <goal>run</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. -->
  51. <plugin>
  52. <artifactId>maven-assembly-plugin</artifactId>
  53. <executions>
  54. <execution>
  55. <id>aspectjmatcher-assembly</id>
  56. <phase>package</phase>
  57. <goals>
  58. <goal>single</goal>
  59. </goals>
  60. <configuration>
  61. <finalName>aspectjmatcher-${project.version}</finalName>
  62. <appendAssemblyId>false</appendAssemblyId>
  63. <archive>
  64. <manifestEntries>
  65. <Automatic-Module-Name>org.aspectj.matcher</Automatic-Module-Name>
  66. <!--
  67. <Premain-Class>org.aspectj.weaver.loadtime.Agent</Premain-Class>
  68. <Agent-Class>org.aspectj.weaver.loadtime.Agent</Agent-Class>
  69. <Can-Redefine-Classes>true</Can-Redefine-Classes>
  70. -->
  71. </manifestEntries>
  72. <manifestSections>
  73. <manifestSection>
  74. <name>org/aspectj/matcher/</name>
  75. <manifestEntries>
  76. <Specification-Title>AspectJ Matcher Classes</Specification-Title>
  77. <Specification-Version>${project.version}</Specification-Version>
  78. <Specification-Vendor>https://www.eclipse.org/aspectj/</Specification-Vendor>
  79. <Implementation-Title>org.aspectj.matcher</Implementation-Title>
  80. <Implementation-Version>${project.version}</Implementation-Version>
  81. <Implementation-Vendor>https://www.eclipse.org/aspectj/</Implementation-Vendor>
  82. <Bundle-Name>AspectJ Matcher</Bundle-Name>
  83. <Bundle-Version>${project.version}</Bundle-Version>
  84. <Bundle-Copyright>(C) Copyright 1999-2001 Xerox Corporation,
  85. 2002 Palo Alto Research Center, Incorporated (PARC),
  86. 2003-2020 Contributors. All Rights Reserved</Bundle-Copyright>
  87. </manifestEntries>
  88. </manifestSection>
  89. </manifestSections>
  90. </archive>
  91. <descriptors>
  92. <descriptor>aspectjmatcher-assembly.xml</descriptor>
  93. </descriptors>
  94. </configuration>
  95. </execution>
  96. <execution>
  97. <id>aspectjmatcher-sources-assembly</id>
  98. <phase>package</phase>
  99. <goals>
  100. <goal>single</goal>
  101. </goals>
  102. <configuration>
  103. <classifier>sources</classifier>
  104. <finalName>aspectjmatcher-${project.version}</finalName>
  105. <archive>
  106. </archive>
  107. <descriptors>
  108. <descriptor>aspectjmatcher-sources-assembly.xml</descriptor>
  109. </descriptors>
  110. </configuration>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>