Created
April 19, 2017 19:23
-
-
Save jeffersonsouza/ef90cfc555387dcef06d632804561031 to your computer and use it in GitHub Desktop.
Get a list of instaled plugins in Jenkins CI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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