diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-09 14:07:09 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-09 14:07:09 +0700 |
commit | 1ed026071e9f15130274f6123c3cd9e009f4d2cb (patch) | |
tree | d1fbd82cc1ea5ed6bd38cb86a2a36120a2ad2dfd /build | |
parent | 060bf4c3c66841237a5acafbbe211e360c9d920b (diff) | |
download | aspectj-1ed026071e9f15130274f6123c3cd9e009f4d2cb.tar.gz aspectj-1ed026071e9f15130274f6123c3cd9e009f4d2cb.zip |
POM cosmetics, e.g. plugin version management
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'build')
-rw-r--r-- | build/pom.xml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/build/pom.xml b/build/pom.xml index fe6b41cb0..6fa02a049 100644 --- a/build/pom.xml +++ b/build/pom.xml @@ -33,7 +33,6 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> - <version>1.9.1</version> <executions> <execution> <id>build.date</id> @@ -41,11 +40,11 @@ <goal>timestamp-property</goal> </goals> <configuration> + <!-- Timestamp format: Thu Apr 8, 2021 --> <name>build.date</name> <pattern>E MMM d, YYYY</pattern> <timeZone>America/Los_Angeles</timeZone> <locale>en_US</locale> - <!-- build.date: Monday Feb 4, 2019 --> </configuration> </execution> <execution> @@ -54,14 +53,11 @@ <goal>timestamp-property</goal> </goals> <configuration> + <!-- Timestamp format: Thursday Apr 8, 2021 at 20:20:16 PDT --> <name>build.time</name> - <!-- - <pattern>E MMM d, YYYY 'at' HH:MM:SS z</pattern> - --> <pattern>EEEE MMM d, yyyy 'at' HH:mm:ss z</pattern> <timeZone>America/Los_Angeles</timeZone> <locale>en_US</locale> - <!-- build.time: Monday Feb 4, 2019 at 23:50:25 GMT --> </configuration> </execution> <execution> @@ -70,11 +66,11 @@ <goal>timestamp-property</goal> </goals> <configuration> + <!-- Timestamp format: 2021 --> <name>build.year</name> <pattern>YYYY</pattern> <timeZone>America/Los_Angeles</timeZone> <locale>en_US</locale> - <!-- year: 2019 --> </configuration> </execution> </executions> |