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

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