Skip to content

Instantly share code, notes, and snippets.

@n1c0l4stournier
Last active October 22, 2018 12:37
Show Gist options
  • Save n1c0l4stournier/40c232e826fc6f800de55484f6c2cd5d to your computer and use it in GitHub Desktop.
Save n1c0l4stournier/40c232e826fc6f800de55484f6c2cd5d to your computer and use it in GitHub Desktop.
Get Jenkins Plugin List in Jenkins Console - http://JENKINS_URL/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