Skip to content

Instantly share code, notes, and snippets.

@wrossmck
Created October 9, 2018 18:27
Show Gist options
  • Save wrossmck/5ef9130b5c49697b1402d13066c87e41 to your computer and use it in GitHub Desktop.
Save wrossmck/5ef9130b5c49697b1402d13066c87e41 to your computer and use it in GitHub Desktop.
list available vs current jenkins plugins
Jenkins.instance.updateCenter.getAvailables().each{
println "${it.name}:${it.version}"
}
Jenkins.instance.pluginManager.plugins.each{
println "${it}:${it.version}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment