Last active
April 5, 2021 18:04
-
-
Save gwsu2008/1611cf5d170add4f83bd1d3236c6261a to your computer and use it in GitHub Desktop.
jenkins-get-plugins.groovy
This file contains hidden or 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
Jenkins.instance.pluginManager.plugins.each{ | |
plugin -> | |
println ("${plugin.getDisplayName()} | ${plugin.getShortName()} : ${plugin.getVersion()}") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment