Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question

6 Answers

up vote 19 down vote accepted

You can use the Maven Buildnumber Plugin for this:

<build>
  <plugins>
    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>buildnumber-maven-plugin</artifactId>
      <executions>
        <execution>
          <phase>initialize</phase>
          <goals>
            <goal>create</goal>
          </goals>
        </execution>
      </executions>
      <configuration>
        <doCheck>false</doCheck>
        <doUpdate>false</doUpdate>
        <timestampFormat>{0, date, yyyy-MM-dd HH:mm:ss}</timestampFormat>
      </configuration>
    </plugin>
  </plugins>
</build>

The date is then available in the property ${buildNumber}.

share|improve this answer
and the current date in the property : ${timestamp} More over I had to add a dummy <scm> – jpprade Oct 1 '12 at 8:58

Feature does not work with maven 2.2.1 resource filtering.

See: http://jira.codehaus.org/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.

share|improve this answer
1  
+1 much better than maven.apache.org/plugin-developers/cookbook/… BTW, you code can also be inside the same pom.xml in <project><properties> ... </properties></project>. – Cojones Jul 8 '11 at 23:22
2  
Note that in a bug in jenkins is blocking you from using this feature ( only for jenkins case only ) issues.jenkins-ci.org/browse/JENKINS-9693 – Rudy Dec 24 '12 at 5:54
after 3 years this maven issue is still open! – Karussell Mar 22 at 23:59
@Karussell, you are free to contribute a fix to the project, which would be more productive than complaining that people who donate their time to a project are too slow to fix an issue important to you. – Paul Mar 25 at 22:02
Lovely open source argument. But I did not complain. It is a fact ;) ! – Karussell Mar 26 at 10:37

Since Maven 2.1 M1, you can now do ${maven.build.timestamp} provided you also define ${maven.build.timestamp.format}

<properties>
    ...
    <maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format>
    ...
</properties>
share|improve this answer
7  
Note: this doesn't work (as of yet) in filtering resource files – matt b Sep 3 '09 at 17:31
1  
Does not work on M3.04 too – fabdouglas May 3 '12 at 12:35
I don't think (nowadays) one needs to provide <maven.build.timestamp.format>. (I myself was fooled into thinking a bare ${maven.build.timestamp} did not work, but then I was only testing using Eclipse/m2e/WTP. As soon as I run something like mvn compile, ${maven.build.timestamp} is updated just fine.) – Arjan Jan 10 at 11:03

Another solution is to use Groovy inside the pom.xml (maybe not as proper as the solution proposed by Thomas Marti):

   <build>
      <resources>
         <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
         </resource>
      </resources>
      <plugins>
         <plugin>
            <groupId>org.codehaus.groovy.maven</groupId>
            <artifactId>gmaven-plugin</artifactId>
            <executions>
               <execution>
                  <phase>validate</phase>
                  <goals>
                     <goal>execute</goal>
                  </goals>
                  <configuration>
                     <source>
                     import java.util.Date 
                     import java.text.MessageFormat 
                     def vartimestamp = MessageFormat.format("{0,date,yyyyMMdd-HH:mm:ss}", new Date()) 
                     project.properties['buildtimestamp'] = vartimestamp
                     </source>
                  </configuration>
               </execution>
            </executions>
         </plugin>
      </plugins>
   </build>

and then use the buildtimestamp property:

client.version=${pom.version}
client.build=${buildtimestamp}
share|improve this answer
1  
Thanks for this! The BuildNumber plugin appears to be pretty broken for me but this worked like a charm. – JavadocMD Nov 3 '10 at 7:39

it's work for me at maven 2.1.0

${maven.build.timestamp}

share|improve this answer

This worked for me. All I wanted was the timestamp.

In the pom...

<properties>
    <maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format>
    <dev.build.timestamp>${maven.build.timestamp}</dev.build.timestamp>
</properties>
...
<overlay>
   <groupId>mystuff</groupId>
   <artifactId>mystuff.web</artifactId>
   <filtered>true</filtered>
</overlay>

And in a JSP file...

<div>Built: ${dev.build.timestamp}</div>

Example result is...

<div>Built: 20130419-0835</div>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.