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

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