import groovy.time.TimeCategory use(TimeCategory) { def now = new Date() def then = now + 14.weeks + 6.days def fmt = 'EEE MMM dd yyyy' println now.clearTime() println now.format(fmt) println then.format(fmt) }