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 4.0KB

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