java - Build timestamp using Hudson and Maven? -


from build time set in project built maven , hudson?

use plugin:

<plugin>    <groupid>com.keyboardsamurais.maven</groupid>    <artifactid>maven-timestamp-plugin</artifactid>    <version>1.0</version>    <configuration>     <propertyname>timestamp</propertyname>     <timestamppattern>dd.mm.yyyy hh:mm</timestamppattern>    </configuration>    <executions>     <execution>      <goals>       <goal>create</goal>      </goals>     </execution>    </executions>   </plugin> 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -