Если вы не хотите добавлять другую зависимость от плагина, альтернативой является использование класса JDK Timer. Просто добавьте следующее к Bootstrap.groovy
def init = { servletContext ->
// The code for the task should go inside this closure
def task = { println "executing task"} as TimerTask
// Figure out when task should execute first
def firstExecution = Calendar.instance
def hour = firstExecution.get(Calendar.HOUR_OF_DAY)
firstExecution.clearTime()
firstExecution.set(Calendar.HOUR_OF_DAY, hour + 1)
// Calculate interval between executions
def oneHourInMs = 1000 * 60 * 60
// Schedule the task
new Timer().scheduleAtFixedRate(task, firstExecution.time, oneHourInMs)
}