Actions
Bug #10357
closedProvide ${maven.build.timestamp} with a fixed timezone
Start date:
07/16/2015
Due date:
% Done:
0%
Estimated time:
Description
Pour mon build maven j'utilise la date ${maven.build.timestamp} avec formatage via maven.build.timestamp.format. TVB ou presque Je sais pas ou il prends la timezone, mais en tout cas c'est pas constant Sur ma machine de dev il l'exprime en UTC (CEST - 2h) Je veux dire 111003 alors qu'il est 13h10mn03s donc je croyais que ok Mais sur un worker jenkins 134.158.246.155 , il exprime avec 6 heure de moins soit 071003 (au passage voir PS) J'arrive pas a positionner la timezone (par ex a utc) Les essais mvn -Duser.timezone=UTC ou via MAVEN_OPTS ne donnent rien et je vois pas comment le faire dans les pom.xml PS : >ssh -i ... jenkins@134.158.246.155 Last login: Fri Jul 3 06:26:54 2015 from 134.158.231.30 [jenkins@centos6-a08 ~]$ date Thu Jul 16 07:18:51 EDT 2015 [jenkins@centos6-a08 ~]$ logout Connection to 134.158.246.155 closed. >date Thu Jul 16 13:18:54 CEST 2015
Updated by Chambon Bernard over 9 years ago
- Status changed from New to Resolved
A better solution is to use the great build-helper-maven-plugin
The next config will provide ${my-timestamp} with the required timezone (e.g. utc), cool !
<groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9.1</version> <executions> <execution> <id>timestamp-property</id> <goals> <goal>timestamp-property</goal> </goals> <configuration> <!-- ${my-timestamp} will be used in version.txt and for rpm release number--> <name>my-timestamp</name> <pattern>yyyyMMdd.HHmmss</pattern> <timeZone>UTC</timeZone> </configuration> </execution> </executions>
Actions