import static java.util.Calendar.*
import java.text.SimpleDateFormat
def cal = Calendar.instance
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm")
String hora = "9:20"
cal.setTime(sdf.parse(hora))
cal.add(cal.MINUTE, 120)
println cal.time
println cal.time.format("HH:mm")
Para efetuar os teste do script: AKI!