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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>Europe/Zurich</timeZone>
  43. <!-- build.date: Monday Feb 4, 2019 -->
  44. <timeZone>America/Los_Angeles</timeZone>
  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. <!-- build.time: Monday Feb 4, 2019 at 23:50:25 GMT -->
  60. </configuration>
  61. </execution>
  62. <execution>
  63. <id>year</id>
  64. <goals>
  65. <goal>timestamp-property</goal>
  66. </goals>
  67. <configuration>
  68. <name>build.year</name>
  69. <pattern>YYYY</pattern>
  70. <timeZone>America/Los_Angeles</timeZone>
  71. <!-- year: 2019 -->
  72. </configuration>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. </plugins>
  77. <resources>
  78. <resource>
  79. <directory>src/main/resources</directory>
  80. <filtering>true</filtering>
  81. </resource>
  82. </resources>
  83. <pluginManagement>
  84. <plugins>
  85. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  86. <plugin>
  87. <groupId>org.eclipse.m2e</groupId>
  88. <artifactId>lifecycle-mapping</artifactId>
  89. <version>1.0.0</version>
  90. <configuration>
  91. <lifecycleMappingMetadata>
  92. <pluginExecutions>
  93. <pluginExecution>
  94. <pluginExecutionFilter>
  95. <groupId>
  96. org.codehaus.mojo
  97. </groupId>
  98. <artifactId>
  99. build-helper-maven-plugin
  100. </artifactId>
  101. <versionRange>
  102. [1.9.1,)
  103. </versionRange>
  104. <goals>
  105. <goal>
  106. timestamp-property
  107. </goal>
  108. </goals>
  109. </pluginExecutionFilter>
  110. <action>
  111. <ignore></ignore>
  112. </action>
  113. </pluginExecution>
  114. </pluginExecutions>
  115. </lifecycleMappingMetadata>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </pluginManagement>
  120. </build>
  121. </project>