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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 Intaller</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></phase>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <artifactId>maven-assembly-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <id>aspectjinstaller-assembly</id>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>single</goal>
  42. </goals>
  43. <configuration>
  44. <finalName>aspectj-${project.version}</finalName>
  45. <appendAssemblyId>false</appendAssemblyId>
  46. <archive>
  47. <manifestEntries>
  48. <Main-Class>$installer$.org.aspectj.Main</Main-Class>
  49. </manifestEntries>
  50. </archive>
  51. <descriptors>
  52. <descriptor>aspectjinstaller-assembly.xml</descriptor>
  53. </descriptors>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>