Music, software, life… and stuff.
[ Twitter ] [ GitHub ] [ Linked In ]
Quick one…
If you want to permanently disable plugin version change confirmations (e.g. when another developer has changed a plugin version in BuildConfig.groovy), simply add this to your scripts/_Events.groovy:
def resolveDependenciesWasInteractive = false
eventResolveDependenciesStart = {
resolveDependenciesWasInteractive = isInteractive
isInteractive = false
}
eventResolveDependenciesEnd = {
isInteractive = resolveDependenciesWasInteractive
}
Annoying messages be gone.
Posted: Jan 6th, 2011 @ 12:44 pm