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

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