使用Hudson和Maven构建时间戳?

时间:2012-06-29 06:44:48

标签: java maven build hudson

从Maven和Hudson构建的项目中设置的构建时间在哪里?

2 个答案:

答案 0 :(得分:1)

使用此插件:

<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>

答案 1 :(得分:0)

实际上我发现这是哈德森工作机器设定的时间。