Skip to content

Instantly share code, notes, and snippets.

@gdm
Created October 9, 2020 10:49
Show Gist options
  • Save gdm/f394f8834a546a827bcd010a9186d6b0 to your computer and use it in GitHub Desktop.
Save gdm/f394f8834a546a827bcd010a9186d6b0 to your computer and use it in GitHub Desktop.
Get jenkins plugins
# Generates list of jenkins plugins compatible with /usr/local/bin/install-plugins.sh (distributed in jenkins Docker)
# The output of this command (colon-separated list of items like 'htmlpublisher:1.23') should be
# passed as an input for /usr/local/bin/install-plugins.sh script
curl -u $JENKINS_USER:$JENKINS_PASSWORD \
"http://localhost:8080/pluginManager/api/xml?depth=1&xpath=/*/*/shortName|/*/*/version&wrapper=plugins" | \
perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)(<\/\w+>)+/\1 \2\n/g' | \
sed 's/ /:/' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment