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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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></phase>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <artifactId>maven-assembly-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <id>aspectjrt-assembly</id>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>single</goal>
  42. </goals>
  43. <configuration>
  44. <finalName>aspectjrt-${project.version}</finalName>
  45. <appendAssemblyId>false</appendAssemblyId>
  46. <archive>
  47. <manifestEntries>
  48. <Automatic-Module-Name>org.aspectj.runtime</Automatic-Module-Name>
  49. </manifestEntries>
  50. <manifestSections>
  51. <manifestSection>
  52. <name>org/aspectj/lang/</name>
  53. <manifestEntries>
  54. <Specification-Title>AspectJ Runtime Classes</Specification-Title>
  55. <Specification-Version>${project.version}</Specification-Version>
  56. <Specification-Vendor>https://www.eclipse.org/aspectj/</Specification-Vendor>
  57. <Implementation-Title>org.aspectj.runtime</Implementation-Title>
  58. <Implementation-Version>${project.version}</Implementation-Version>
  59. <Implementation-Vendor>https://www.eclipse.org/aspectj/</Implementation-Vendor>
  60. <Bundle-Name>AspectJ Runtime</Bundle-Name>
  61. <Bundle-Version>${project.version}</Bundle-Version>
  62. <Bundle-Copyright>(C) Copyright 1999-2001 Xerox Corporation,
  63. 2002 Palo Alto Research Center, Incorporated (PARC),
  64. 2003-2019 Contributors. All Rights Reserved</Bundle-Copyright>
  65. </manifestEntries>
  66. </manifestSection>
  67. </manifestSections>
  68. </archive>
  69. <descriptors>
  70. <descriptor>aspectjrt-assembly.xml</descriptor>
  71. </descriptors>
  72. </configuration>
  73. </execution>
  74. <execution>
  75. <id>aspectjrt-src-assembly</id>
  76. <phase>package</phase>
  77. <goals>
  78. <goal>single</goal>
  79. </goals>
  80. <configuration>
  81. <classifier>sources</classifier>
  82. <finalName>aspectjrt-${project.version}</finalName>
  83. <archive>
  84. </archive>
  85. <descriptors>
  86. <descriptor>aspectjrt-sources-assembly.xml</descriptor>
  87. </descriptors>
  88. </configuration>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>