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.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>aspectjrt</artifactId>
  12. <packaging>pom</packaging>
  13. <name>AspectJ Runtime</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.aspectj</groupId>
  17. <artifactId>runtime</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>none</phase>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <artifactId>maven-assembly-plugin</artifactId>
  36. <!--
  37. Set version manually in order to override version from super POM, e.g. 2.2-beta-5 from
  38. https://maven.apache.org/ref/3.6.3/maven-model-builder/super-pom
  39. -->
  40. <version>3.1.1</version>
  41. <executions>
  42. <execution>
  43. <id>aspectjrt-assembly</id>
  44. <phase>package</phase>
  45. <goals>
  46. <goal>single</goal>
  47. </goals>
  48. <configuration>
  49. <finalName>aspectjrt-${project.version}</finalName>
  50. <appendAssemblyId>false</appendAssemblyId>
  51. <archive>
  52. <manifestEntries>
  53. <Automatic-Module-Name>org.aspectj.runtime</Automatic-Module-Name>
  54. </manifestEntries>
  55. <manifestSections>
  56. <manifestSection>
  57. <name>org/aspectj/lang/</name>
  58. <manifestEntries>
  59. <Specification-Title>AspectJ Runtime Classes</Specification-Title>
  60. <Specification-Version>${project.version}</Specification-Version>
  61. <Specification-Vendor>https://www.eclipse.org/aspectj/</Specification-Vendor>
  62. <Implementation-Title>org.aspectj.runtime</Implementation-Title>
  63. <Implementation-Version>${project.version}</Implementation-Version>
  64. <Implementation-Vendor>https://www.eclipse.org/aspectj/</Implementation-Vendor>
  65. <Bundle-Name>AspectJ Runtime</Bundle-Name>
  66. <Bundle-Version>${project.version}</Bundle-Version>
  67. <Bundle-Copyright>(C) Copyright 1999-2001 Xerox Corporation,
  68. 2002 Palo Alto Research Center, Incorporated (PARC),
  69. 2003-2019 Contributors. All Rights Reserved</Bundle-Copyright>
  70. </manifestEntries>
  71. </manifestSection>
  72. </manifestSections>
  73. </archive>
  74. <descriptors>
  75. <descriptor>aspectjrt-assembly.xml</descriptor>
  76. </descriptors>
  77. </configuration>
  78. </execution>
  79. <execution>
  80. <id>aspectjrt-src-assembly</id>
  81. <phase>package</phase>
  82. <goals>
  83. <goal>single</goal>
  84. </goals>
  85. <configuration>
  86. <classifier>sources</classifier>
  87. <finalName>aspectjrt-${project.version}</finalName>
  88. <archive>
  89. </archive>
  90. <descriptors>
  91. <descriptor>aspectjrt-sources-assembly.xml</descriptor>
  92. </descriptors>
  93. </configuration>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>