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 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.20-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>bridge</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.aspectj</groupId>
  14. <artifactId>util</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.codehaus.mojo</groupId>
  22. <artifactId>build-helper-maven-plugin</artifactId>
  23. <executions>
  24. <execution>
  25. <id>build.time</id>
  26. <goals>
  27. <goal>timestamp-property</goal>
  28. </goals>
  29. <configuration>
  30. <!-- Timestamp format: Thursday Apr 8, 2021 at 20:04:07 PDT -->
  31. <name>version.time_text</name>
  32. <pattern>EEEE MMM d, yyyy 'at' HH:mm:ss z</pattern>
  33. <timeZone>America/Los_Angeles</timeZone>
  34. <locale>en_US</locale>
  35. </configuration>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. </plugins>
  40. <resources>
  41. <resource>
  42. <directory>src/main/resources</directory>
  43. <filtering>true</filtering>
  44. </resource>
  45. </resources>
  46. <pluginManagement>
  47. <plugins>
  48. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  49. <plugin>
  50. <groupId>org.eclipse.m2e</groupId>
  51. <artifactId>lifecycle-mapping</artifactId>
  52. <version>1.0.0</version>
  53. <configuration>
  54. <lifecycleMappingMetadata>
  55. <pluginExecutions>
  56. <pluginExecution>
  57. <pluginExecutionFilter>
  58. <groupId>
  59. org.codehaus.mojo
  60. </groupId>
  61. <artifactId>
  62. build-helper-maven-plugin
  63. </artifactId>
  64. <versionRange>
  65. [1.9.1,)
  66. </versionRange>
  67. <goals>
  68. <goal>
  69. timestamp-property
  70. </goal>
  71. </goals>
  72. </pluginExecutionFilter>
  73. <action>
  74. <ignore></ignore>
  75. </action>
  76. </pluginExecution>
  77. </pluginExecutions>
  78. </lifecycleMappingMetadata>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </pluginManagement>
  83. </build>
  84. </project>