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

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