Merge pull request 'add new execution phase to buildnumber-maven-plugin' (!20) from feature/24580 into master

Reviewed-on: #20
This commit is contained in:
Roberto Cirillo 2023-02-10 14:50:36 +01:00
commit 49241e50bf
1 changed files with 11 additions and 0 deletions

11
pom.xml
View File

@ -773,6 +773,17 @@
<doUpdate>false</doUpdate>
</configuration>
</execution>
<execution>
<id>build.date</id>
<phase>initialize</phase>
<goals>
<goal>create-timestamp</goal>
</goals>
<configuration>
<timestampFormat>yyyy-MM-dd</timestampFormat>
<timestampPropertyName>build.date</timestampPropertyName>
</configuration>
</execution>
</executions>
</plugin>