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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.6</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.7.BUILD-SNAPSHOT</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. <module>aspectjmatcher</module>
  44. <!-- build the java -jar'able installer -->
  45. <module>installer</module>
  46. </modules>
  47. <build>
  48. <pluginManagement>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>1.8</source>
  55. <target>1.8</target>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <configuration>
  62. <!--
  63. <testFailureIgnore>true</testFailureIgnore>
  64. -->
  65. <excludes>
  66. <exclude>**/*ModuleTests.java</exclude>
  67. </excludes>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </pluginManagement>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-jar-plugin</artifactId>
  76. <version>3.1.2</version>
  77. <configuration>
  78. <archive>
  79. <addMavenDescriptor>false</addMavenDescriptor>
  80. </archive>
  81. </configuration>
  82. <executions>
  83. <execution>
  84. <id>test-jar</id>
  85. <goals>
  86. <goal>test-jar</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. </plugin>
  91. <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version>
  92. <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors>
  93. </configuration> </plugin> -->
  94. <plugin>
  95. <artifactId>maven-clean-plugin</artifactId>
  96. <version>3.1.0</version>
  97. <configuration>
  98. <filesets>
  99. <fileset>
  100. <directory>.</directory>
  101. <includes>
  102. <include>**/ajcore.*.txt</include>
  103. </includes>
  104. <!--
  105. <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude>
  106. </excludes> -->
  107. <followSymlinks>false</followSymlinks>
  108. </fileset>
  109. <fileset>
  110. <directory>aj-build</directory>
  111. <!-- <includes> <include>**/*.tmp</include> <include>**/*.log</include>
  112. </includes> <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude>
  113. </excludes> -->
  114. <followSymlinks>false</followSymlinks>
  115. </fileset>
  116. </filesets>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. <dependencies>
  122. <dependency>
  123. <groupId>junit</groupId>
  124. <artifactId>junit</artifactId>
  125. <version>3.8.1</version>
  126. <scope>test</scope>
  127. </dependency>
  128. </dependencies>
  129. </project>