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

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