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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.aspectj</groupId>
  7. <artifactId>aspectj-parent</artifactId>
  8. <version>1.9.7.BUILD-SNAPSHOT</version>
  9. <relativePath>..</relativePath>
  10. </parent>
  11. <artifactId>docs</artifactId>
  12. <packaging>jar</packaging>
  13. <name>docs</name>
  14. <dependencies>
  15. <!-- <dependency> <groupId>org.aspectj</groupId> <artifactId>util</artifactId>
  16. <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId>
  17. <artifactId>runtime</artifactId> <version>${project.version}</version> </dependency>
  18. <dependency> <groupId>org.aspectj</groupId> <artifactId>util</artifactId>
  19. <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId>
  20. <artifactId>testing-util</artifactId> <version>${project.version}</version>
  21. </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>bridge</artifactId>
  22. <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId>
  23. <artifactId>asm</artifactId> <version>${project.version}</version> </dependency>
  24. <dependency> <groupId>org.aspectj</groupId> <artifactId>org.aspectj.matcher</artifactId>
  25. <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId>
  26. <artifactId>runtime</artifactId> <version>${project.version}</version> </dependency>
  27. <dependency> <groupId>org.aspectj</groupId> <artifactId>org.aspectj.matcher</artifactId>
  28. <version>${project.version}</version> <type>test-jar</type> <scope>test</scope>
  29. </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>bcel-builder</artifactId>
  30. <version>${project.version}</version> </dependency> <dependency> <groupId>commons</groupId>
  31. <artifactId>commons</artifactId> <version>1.0</version> <scope>system</scope>
  32. <systemPath>${project.basedir}/../lib/commons/commons.jar</systemPath> </dependency>
  33. <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>1.0</version>
  34. <scope>system</scope> <systemPath>${project.basedir}/../lib/asm/asm-7.0-beta.renamed.jar</systemPath>
  35. </dependency> -->
  36. </dependencies>
  37. <build>
  38. <resources>
  39. <resource>
  40. <directory>src/main/resources</directory>
  41. <filtering>true</filtering>
  42. <includes>
  43. <include>**/local.properties</include>
  44. </includes>
  45. </resource>
  46. <!--
  47. <resource>
  48. <directory>src/main/resources</directory>
  49. <filtering>false</filtering>
  50. <excludes>
  51. <exclude>**/local.properties</exclude>
  52. </excludes>
  53. </resource>
  54. -->
  55. </resources>
  56. <plugins>
  57. <plugin>
  58. <artifactId>maven-antrun-plugin</artifactId>
  59. <version>1.7</version>
  60. <executions>
  61. <execution>
  62. <phase>process-resources</phase>
  63. <configuration>
  64. <tasks>
  65. <copy file="${project.build.outputDirectory}/local.properties"
  66. toFile="../build/local.properties" overwrite="true" />
  67. </tasks>
  68. </configuration>
  69. <goals>
  70. <goal>run</goal>
  71. </goals>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-antrun-plugin</artifactId>
  78. <version>1.7</version>
  79. <executions>
  80. <execution>
  81. <id>ant</id>
  82. <phase>process-resources</phase>
  83. <configuration>
  84. <target>
  85. <ant antfile="build.xml">
  86. <target name="dist" />
  87. </ant>
  88. </target>
  89. </configuration>
  90. <goals>
  91. <goal>run</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin></plugins>
  96. <pluginManagement>
  97. <plugins>
  98. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  99. <plugin>
  100. <groupId>org.eclipse.m2e</groupId>
  101. <artifactId>lifecycle-mapping</artifactId>
  102. <version>1.0.0</version>
  103. <configuration>
  104. <lifecycleMappingMetadata>
  105. <pluginExecutions>
  106. <pluginExecution>
  107. <pluginExecutionFilter>
  108. <groupId>
  109. org.apache.maven.plugins
  110. </groupId>
  111. <artifactId>
  112. maven-antrun-plugin
  113. </artifactId>
  114. <versionRange>[1.7,)</versionRange>
  115. <goals>
  116. <goal>run</goal>
  117. </goals>
  118. </pluginExecutionFilter>
  119. <action>
  120. <ignore></ignore>
  121. </action>
  122. </pluginExecution>
  123. </pluginExecutions>
  124. </lifecycleMappingMetadata>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </pluginManagement>
  129. </build>
  130. </project>