gitextract_gxy0y0_6/ ├── .ci/ │ └── publish.sh ├── .git-blame-ignore-revs ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── release-drafter.yml │ └── updatecli.yaml ├── .gitignore ├── .gitmodules ├── .hadolint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── HACKING.adoc ├── Jenkinsfile ├── LICENSE.txt ├── Makefile ├── README.md ├── SECURITY.md ├── alpine/ │ └── hotspot/ │ └── Dockerfile ├── debian/ │ └── Dockerfile ├── docker-bake.hcl ├── jdk-download-url.sh ├── jdk-download.sh ├── jenkins-plugin-cli.ps1 ├── jenkins-plugin-cli.sh ├── jenkins-support ├── jenkins-support.psm1 ├── jenkins.io-2026.key ├── jenkins.ps1 ├── jenkins.sh ├── make.ps1 ├── rhel/ │ └── Dockerfile ├── tests/ │ ├── bake.bats │ ├── functions/ │ │ ├── .ssh/ │ │ │ └── config │ │ ├── Dockerfile │ │ └── Dockerfile-windows │ ├── functions.Tests.ps1 │ ├── functions.bats │ ├── golden/ │ │ ├── expected_env_vars_except_hostname.txt │ │ ├── expected_platforms.txt │ │ ├── expected_tags.txt │ │ ├── expected_tags_latest_lts.txt │ │ └── expected_tags_latest_weekly.txt │ ├── jenkinsfile.bats │ ├── plugins-cli/ │ │ ├── Dockerfile │ │ ├── Dockerfile-windows │ │ ├── custom-war/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-windows │ │ │ └── WEB-INF/ │ │ │ └── plugins/ │ │ │ └── my-happy-plugin.hpi │ │ ├── java-opts/ │ │ │ └── Dockerfile │ │ ├── no-war/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-windows │ │ │ └── plugins.txt │ │ ├── pluginsfile/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-windows │ │ │ └── plugins.txt │ │ ├── ref/ │ │ │ ├── Dockerfile │ │ │ └── Dockerfile-windows │ │ └── update/ │ │ ├── Dockerfile │ │ └── Dockerfile-windows │ ├── plugins-cli.Tests.ps1 │ ├── plugins-cli.bats │ ├── runtime.Tests.ps1 │ ├── runtime.bats │ ├── test_helpers.bash │ ├── test_helpers.psm1 │ ├── update-golden-file.sh │ └── upgrade-plugins/ │ ├── Dockerfile │ └── Dockerfile-windows ├── tini_pub.gpg ├── tools/ │ ├── hadolint │ └── shellcheck ├── updatecli/ │ ├── scripts/ │ │ └── rhel-latest-tag.sh │ ├── updatecli.d/ │ │ ├── alpine.yaml │ │ ├── debian.yaml │ │ ├── git-lfs.yaml │ │ ├── hadolint.yaml │ │ ├── jdk17.yaml │ │ ├── jdk21.yaml │ │ ├── jdk25.yaml │ │ ├── jenkins-version-simulated-lts.yaml │ │ ├── jenkins-version.yaml │ │ ├── plugin-installation-manager-tool.yaml │ │ ├── rhel.yaml │ │ └── shellcheck.yaml │ └── values.github-action.yaml └── windows/ └── windowsservercore/ └── hotspot/ └── Dockerfile