{"id":16100297,"url":"https://github.com/kuniwak/jenkins-plugin-fixator","last_synced_at":"2025-06-18T07:37:29.570Z","repository":{"id":55996441,"uuid":"73488706","full_name":"Kuniwak/jenkins-plugin-fixator","owner":"Kuniwak","description":"CLI tool to manage Jenkins plugins","archived":false,"fork":false,"pushed_at":"2020-12-02T08:11:27.000Z","size":21,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-28T08:16:22.026Z","etag":null,"topics":["developer-tools","jenkins","jenkins-plugin"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kuniwak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-11T15:26:54.000Z","updated_at":"2020-09-08T00:59:41.000Z","dependencies_parsed_at":"2022-08-15T11:01:00.977Z","dependency_job_id":null,"html_url":"https://github.com/Kuniwak/jenkins-plugin-fixator","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuniwak%2Fjenkins-plugin-fixator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuniwak%2Fjenkins-plugin-fixator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuniwak%2Fjenkins-plugin-fixator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kuniwak%2Fjenkins-plugin-fixator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kuniwak","download_url":"https://codeload.github.com/Kuniwak/jenkins-plugin-fixator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243910813,"owners_count":20367545,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["developer-tools","jenkins","jenkins-plugin"],"created_at":"2024-10-09T18:46:05.996Z","updated_at":"2025-03-18T07:31:15.372Z","avatar_url":"https://github.com/Kuniwak.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Jenkins Plugin Fixator\n======================\n\n[![CircleCI](https://circleci.com/gh/Kuniwak/jenkins-plugin-fixator/tree/master.svg?style=svg)](https://circleci.com/gh/Kuniwak/jenkins-plugin-fixator/tree/master)\n\nThis is a CLI tool to manage Jenkins plugins.\n\nMain features are:\n\n- Install plugins from `JenkinsPlugins.lock`\n- Upgrade plugins installed\n- Dump installed plugins to `JenkinsPlugins.lock`\n- Print installed plugins\n\n\n\nQuick start\n-----------\n\n```console\n$ git clone https://github.com/Kuniwak/jenkins-plugin-fixator ~/.jenkins-plugin-fixator\n$ echo 'export PATH=\"$HOME/.jenkins-plugin-fixator/bin:$PATH\"' \u003e\u003e ~/.bash_profile\n$ exec $SHELL -l\n```\n\n\nRequirements\n------------\n\n- Java 1.8 or later\n- curl 7 or later\n\n\n\nUsage\n-----\n### install\n\nInstall Jenkins plugins from JenkinsPlugins.lock (requied `$ENDPOINT`).\n\n```console\n$ ENDPOINT=\"http://my-jenkins.example.com:8080\" jenkins-plugin-fixator install\n```\n\n\n\n### upgrade\n\nUpgrade plugins from JenkinsPlugins.lock and update JenkinsPlugins.lock (requied `$ENDPOINT`).\n\n```console\n$ ENDPOINT=\"http://my-jenkins.example.com:8080\" jenkins-plugin-fixator upgrade\n```\n\n\n\n### dump\n\nDump installed plugins to JenkinsPlugins.lock (requied `$ENDPOINT`).\n\n```console\n$ ENDPOINT=\"http://my-jenkins.example.com:8080\" jenkins-plugin-fixator dump\n```\n\n\n\n### list\n\nList installed plugins (requied `$ENDPOINT`).\n\n```console\n$ ENDPOINT=\"http://my-jenkins.example.com:8080\" jenkins-plugin-fixator list\n```\n\n\n\n### await\n\nWait until Jenkins is ready (requied `$ENDPOINT`).\n\n```console\n$ ENDPOINT=\"http://my-jenkins.example.com:8080\" jenkins-plugin-fixator await\n```\n\n\n\n### help\n\nPrint the help and exit successfully.\n\n```console\n$ jenkins-plugin-fixator help\n```\n\n\n\nAbout `JenkinsPlugins.lock`\n---------------------------\n\n`JenkinsPlugins.lock` is a file that have a list of plugin names and versions.\nThis is an example for `JenkinsPlugins.lock`:\n\n```\nssh-credentials SSH Credentials Plugin 1.12\ngit-client      Git client plugin      2.0.0 (2.1.0)\n```\n\nAs you can see, this format is equivalent to the result of JenkinsCLI's `list-plugins`.\n\n\n\nAbout `$ENDPOINT`\n-----------------\n\n`$ENDPOINT` is an endpoint URL for your Jenkins master.\nThis is an example for `$ENDPOINT`:\n\n```\nENDPOINT=\"http://my-jenkins.example.com:8080\"\n```\n\nNOTE: this URL MUST not include `/` at last.\n\n\n\nLicense\n-------\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Kuniwak\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuniwak%2Fjenkins-plugin-fixator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuniwak%2Fjenkins-plugin-fixator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuniwak%2Fjenkins-plugin-fixator/lists"}