CruiseControl构建时格林威治时间改为北京时间
找到net.sourceforge.cruisecontrol.util下的DateUtil类,找到formatIso8601方法,将其改为:
引用
public static String formatIso8601(final Date date) {
if (date == null) {
return null;
}
return createIso8601SimpleFormat().format(date);
}
然后添加createIso8601SimpleFormat方法:
引用
private static DateFormat createIso8601SimpleFormat() {
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}