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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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>build</artifactId>
  11. <packaging>jar</packaging>
  12. <name>build</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.aspectj</groupId>
  16. <artifactId>testing-util</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>ant</groupId>
  21. <artifactId>ant</artifactId>
  22. <version>1.0</version>
  23. <scope>system</scope>
  24. <systemPath>${project.basedir}/../lib/ant/lib/ant.jar</systemPath>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.codehaus.mojo</groupId>
  31. <artifactId>build-helper-maven-plugin</artifactId>
  32. <version>1.9.1</version>
  33. <executions>
  34. <execution>
  35. <id>build.date</id>
  36. <goals>
  37. <goal>timestamp-property</goal>
  38. </goals>
  39. <configuration>
  40. <name>build.date</name>
  41. <pattern>E MMM d, YYYY</pattern>
  42. <timeZone>America/Los_Angeles</timeZone>
  43. <locale>en_US</locale>
  44. <!-- build.date: Monday Feb 4, 2019 -->
  45. </configuration>
  46. </execution>
  47. <execution>
  48. <id>build.time</id>
  49. <goals>
  50. <goal>timestamp-property</goal>
  51. </goals>
  52. <configuration>
  53. <name>build.time</name>
  54. <!--
  55. <pattern>E MMM d, YYYY 'at' HH:MM:SS z</pattern>
  56. -->
  57. <pattern>EEEE MMM d, yyyy 'at' HH:mm:ss z</pattern>
  58. <timeZone>America/Los_Angeles</timeZone>
  59. <locale>en_US</locale>
  60. <!-- build.time: Monday Feb 4, 2019 at 23:50:25 GMT -->
  61. </configuration>
  62. </execution>
  63. <execution>
  64. <id>year</id>
  65. <goals>
  66. <goal>timestamp-property</goal>
  67. </goals>
  68. <configuration>
  69. <name>build.year</name>
  70. <pattern>YYYY</pattern>
  71. <timeZone>America/Los_Angeles</timeZone>
  72. <locale>en_US</locale>
  73. <!-- year: 2019 -->
  74. </configuration>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79. <resources>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. <filtering>true</filtering>
  83. </resource>
  84. </resources>
  85. <pluginManagement>
  86. <plugins>
  87. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  88. <plugin>
  89. <groupId>org.eclipse.m2e</groupId>
  90. <artifactId>lifecycle-mapping</artifactId>
  91. <version>1.0.0</version>
  92. <configuration>
  93. <lifecycleMappingMetadata>
  94. <pluginExecutions>
  95. <pluginExecution>
  96. <pluginExecutionFilter>
  97. <groupId>
  98. org.codehaus.mojo
  99. </groupId>
  100. <artifactId>
  101. build-helper-maven-plugin
  102. </artifactId>
  103. <versionRange>
  104. [1.9.1,)
  105. </versionRange>
  106. <goals>
  107. <goal>
  108. timestamp-property
  109. </goal>
  110. </goals>
  111. </pluginExecutionFilter>
  112. <action>
  113. <ignore></ignore>
  114. </action>
  115. </pluginExecution>
  116. </pluginExecutions>
  117. </lifecycleMappingMetadata>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </pluginManagement>
  122. </build>
  123. </project>