Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jeffersonsouza/ef90cfc555387dcef06d632804561031 to your computer and use it in GitHub Desktop.
Save jeffersonsouza/ef90cfc555387dcef06d632804561031 to your computer and use it in GitHub Desktop.
Get a list of instaled plugins in Jenkins CI
# run in script console inside Jenkins
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