in src/main/groovy/grails/plugins/quartz/TriggerUtils.groovy [46:53]
static SimpleTrigger buildSimpleTrigger(String jobName, String jobGroup, long repeatInterval, int repeatCount) {
return TriggerBuilder.newTrigger()
.withIdentity(generateTriggerName(), GrailsJobClassConstants.DEFAULT_TRIGGERS_GROUP)
.withPriority(6)
.forJob(jobName, jobGroup)
.withSchedule(SimpleScheduleBuilder.simpleSchedule().withIntervalInMilliseconds(repeatInterval).withRepeatCount(repeatCount))
.build()
}