Skip to content

Instantly share code, notes, and snippets.

@uarun
Created December 18, 2011 04:47
Show Gist options
  • Save uarun/1492397 to your computer and use it in GitHub Desktop.
Save uarun/1492397 to your computer and use it in GitHub Desktop.
Disable plugin upgrade messages in Grails
//... Disable annoying plugin upgrade messages
def resolveDependenciesWasInteractive = false
eventResolveDependenciesStart = {
resolveDependenciesWasInteractive = isInteractive
isInteractive = false
}
eventResolveDependenciesEnd = {
isInteractive = resolveDependenciesWasInteractive
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment