Skip to content

Instantly share code, notes, and snippets.

@joshua-moore
Created October 31, 2014 18:27
Show Gist options
  • Save joshua-moore/6690e878889f52847e42 to your computer and use it in GitHub Desktop.
Save joshua-moore/6690e878889f52847e42 to your computer and use it in GitHub Desktop.
Basic Quartz configuration for Grails
// grails-app/conf/QuartzConfig.groovy
quartz {
autoStartup = true
jdbcStore = false
waitForJobsToCompleteOnShutdown = true
}
environments {
development {
quartz {
autoStartup = true
}
}
test {
quartz {
autoStartup = false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment