How to adjust build date with maven build module

Adding this code into the pom do the job !


<properties>
  <timestamp>${maven.build.timestamp}</timestamp>
  <maven.build.timestamp.format>yyyyMMddHH</maven.build.timestamp.format>
</properties>

<moduleVersion>1.0.0.${timestamp}</moduleVersion>