Created
October 9, 2018 18:27
-
-
Save wrossmck/5ef9130b5c49697b1402d13066c87e41 to your computer and use it in GitHub Desktop.
list available vs current jenkins plugins
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.updateCenter.getAvailables().each{ | |
println "${it.name}:${it.version}" | |
} | |
Jenkins.instance.pluginManager.plugins.each{ | |
println "${it}:${it.version}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment