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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. <properties>
  7. <revision>1.9.4</revision>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. </properties>
  10. <groupId>org.aspectj</groupId>
  11. <artifactId>aspectj-parent</artifactId>
  12. <packaging>pom</packaging>
  13. <version>1.9.5</version>
  14. <name>AspectJ Parent Project</name>
  15. <modules>
  16. <module>util</module>
  17. <module>bridge</module>
  18. <module>testing-util</module>
  19. <module>org.aspectj.matcher</module>
  20. <module>asm</module>
  21. <module>testing-client</module>
  22. <module>ajbrowser</module>
  23. <module>runtime</module>
  24. <module>bcel-builder</module>
  25. <module>weaver</module>
  26. <module>loadtime</module>
  27. <module>org.eclipse.jdt.core</module>
  28. <module>org.aspectj.ajdt.core</module>
  29. <module>ajde.core</module>
  30. <module>ajde</module>
  31. <module>ajdoc</module>
  32. <module>taskdefs</module>
  33. <module>testing</module>
  34. <module>testing-drivers</module>
  35. <module>tests</module>
  36. <module>build</module>
  37. <module>run-all-junit-tests</module>
  38. <module>docs</module>
  39. <!-- create the important artifacts we care about -->
  40. <module>aspectjrt</module>
  41. <module>aspectjweaver</module>
  42. <module>aspectjtools</module>
  43. <!-- build the java -jar'able installer -->
  44. <module>installer</module>
  45. </modules>
  46. <build>
  47. <pluginManagement>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <configuration>
  53. <source>1.8</source>
  54. <target>1.8</target>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-surefire-plugin</artifactId>
  60. <configuration>
  61. <!--
  62. <testFailureIgnore>true</testFailureIgnore>
  63. -->
  64. <excludes>
  65. <exclude>**/*ModuleTests.java</exclude>
  66. </excludes>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </pluginManagement>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-jar-plugin</artifactId>
  75. <version>3.1.2</version>
  76. <configuration>
  77. <archive>
  78. <addMavenDescriptor>false</addMavenDescriptor>
  79. </archive>
  80. </configuration>
  81. <executions>
  82. <execution>
  83. <id>test-jar</id>
  84. <goals>
  85. <goal>test-jar</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version>
  91. <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors>
  92. </configuration> </plugin> -->
  93. <plugin>
  94. <artifactId>maven-clean-plugin</artifactId>
  95. <version>3.1.0</version>
  96. <configuration>
  97. <filesets>
  98. <fileset>
  99. <directory>.</directory>
  100. <includes>
  101. <include>**/ajcore.*.txt</include>
  102. </includes>
  103. <!--
  104. <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude>
  105. </excludes> -->
  106. <followSymlinks>false</followSymlinks>
  107. </fileset>
  108. <fileset>
  109. <directory>aj-build</directory>
  110. <!-- <includes> <include>**/*.tmp</include> <include>**/*.log</include>
  111. </includes> <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude>
  112. </excludes> -->
  113. <followSymlinks>false</followSymlinks>
  114. </fileset>
  115. </filesets>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <dependencies>
  121. <dependency>
  122. <groupId>junit</groupId>
  123. <artifactId>junit</artifactId>
  124. <version>3.8.1</version>
  125. <scope>test</scope>
  126. </dependency>
  127. </dependencies>
  128. </project>