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
Post a Comment