I have a Maven2 project, and I need to add, in a properties file, the current version and the current date.
For the current version, I've used ${project.version}
, which works correctly.
My question is how can I set the current date (i.e. the date when the build is done by Maven2) in my properties file:
client.version=Version ${project.version} client.build=???
(in addition, if I can specify the format for the date, it will be really great)
Feature does not work with maven 2.2.1 resource filtering.
See: https://issues.apache.org/jira/browse/MRESOURCES-99
But you could create a custom property in the parent pom:
<properties> <maven.build.timestamp.format>yyMMdd_HHmm</maven.build.timestamp.format> <buildNumber>${maven.build.timestamp}</buildNumber> </properties>
Where buildNumber is the new property that can be filtered into the resources.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With