Skip to content

Instantly share code, notes, and snippets.

@wstrange
Created August 26, 2016 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wstrange/98dd023740514e434ff27c37082c7f86 to your computer and use it in GitHub Desktop.
Save wstrange/98dd023740514e434ff27c37082c7f86 to your computer and use it in GitHub Desktop.
Jenkins script to list plugins
// go to http://localhost:8080/script
Jenkins.instance.pluginManager.plugins.each{
plugin ->
println ("${plugin.getShortName()}:${plugin.getVersion()}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment