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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>installer</artifactId>
  12. <packaging>pom</packaging>
  13. <name>AspectJ Installer</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.aspectj</groupId>
  17. <artifactId>run-all-junit-tests</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>aspectjinstaller-assembly</id>
  44. <phase>package</phase>
  45. <goals>
  46. <goal>single</goal>
  47. </goals>
  48. <configuration>
  49. <finalName>aspectj-${project.version}</finalName>
  50. <appendAssemblyId>false</appendAssemblyId>
  51. <archive>
  52. <manifestEntries>
  53. <Main-Class>$installer$.org.aspectj.Main</Main-Class>
  54. </manifestEntries>
  55. </archive>
  56. <descriptors>
  57. <descriptor>aspectjinstaller-assembly.xml</descriptor>
  58. </descriptors>
  59. </configuration>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>