{"id":27594387,"url":"https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin","last_synced_at":"2025-04-22T10:34:00.044Z","repository":{"id":40694432,"uuid":"100281222","full_name":"jenkinsci/apache-httpcomponents-client-4-api-plugin","owner":"jenkinsci","description":"Apache HttpClient 4.x API Plugin for Jenkins","archived":false,"fork":false,"pushed_at":"2025-04-21T02:39:00.000Z","size":244,"stargazers_count":13,"open_issues_count":0,"forks_count":28,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-21T03:44:35.519Z","etag":null,"topics":["httpcomponents-client","jenkins","jenkins-api-plugin"],"latest_commit_sha":null,"homepage":"https://plugins.jenkins.io/apache-httpcomponents-client-4-api","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jenkinsci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-08-14T15:15:47.000Z","updated_at":"2025-04-21T02:39:04.000Z","dependencies_parsed_at":"2024-01-07T08:29:22.124Z","dependency_job_id":"0ea976b1-4d5c-4254-8c18-f359d288a90c","html_url":"https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fapache-httpcomponents-client-4-api-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fapache-httpcomponents-client-4-api-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fapache-httpcomponents-client-4-api-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fapache-httpcomponents-client-4-api-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkinsci","download_url":"https://codeload.github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250221421,"owners_count":21394701,"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":["httpcomponents-client","jenkins","jenkins-api-plugin"],"created_at":"2025-04-22T10:31:10.210Z","updated_at":"2025-04-22T10:33:59.981Z","avatar_url":"https://github.com/jenkinsci.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apache HTTP Components Client 4.x API Plugin\n\nThis plugin bundles all the components of [Apache HttpComponents Client 4.5.x](https://hc.apache.org/httpcomponents-client-4.5.x/index.html) except `httpclient-win` because of the dependency on jna.\nThese components can be used by other plugins as a dependency.\nIt allows managing library updates independently from plugins.\n\n## How to introduce to your plugin\n\n### Plugins directly depending on httpclient\n\nReplace the dependency to `org.apache.httpcomponents:httpclient` with the dependency to `apache-httpcomponents-client-4-api`.\nAvoid version conflicts by using the [Jenkins plugin BOM](https://github.com/jenkinsci/bom#readme) rather than depending on a specific version.\n\n* Before:\n    ```\n    \u003cdependencies\u003e\n      ...\n      \u003cdependency\u003e\n        \u003cgroupId\u003eorg.apache.httpcomponents\u003c/groupId\u003e\n        \u003cartifactId\u003ehttpclient\u003c/artifactId\u003e\n        \u003cversion\u003e4.5\u003c/version\u003e\n      \u003c/dependency\u003e\n      ...\n    \u003c/dependencies\u003e\n    ```\n* After:\n    ```\n    \u003cdependencies\u003e\n      ...\n      \u003cdependency\u003e\n        \u003cgroupId\u003eorg.jenkins-ci.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003eapache-httpcomponents-client-4-api\u003c/artifactId\u003e\n      \u003c/dependency\u003e\n      ...\n    \u003c/dependencies\u003e\n    ```\n\n### Plugins using libraries depending on httpclient\n\nAdd the dependency to `apache-httpcomponents-client-4-api` BEFORE any of dependencies to those libraries to force maven to use `httpclient` declared by `apache-httpcomponents-client-4-api`.\nAvoid version conflicts by using the [Jenkins plugin BOM](https://github.com/jenkinsci/bom#readme) rather than depending on a specific version.\n\n* Before:\n    ```\n    \u003cdependencies\u003e\n      ...\n      \u003cdependency\u003e\n        \u003cartifactId\u003esomelibrary-using-httpclient\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n      \u003c/dependency\u003e\n      \u003cdependency\u003e\n        \u003cartifactId\u003eanotherlibrary-using-httpclient\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n      \u003c/dependency\u003e\n      ...\n    \u003c/dependencies\u003e\n    ```\n* After:\n    ```\n    \u003cdependencies\u003e\n      ...\n      \u003cdependency\u003e\n        \u003cgroupId\u003eorg.jenkins-ci.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003eapache-httpcomponents-client-4-api\u003c/artifactId\u003e\n      \u003c/dependency\u003e\n      \u003cdependency\u003e\n        \u003cartifactId\u003esomelibrary-using-httpclient\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n      \u003c/dependency\u003e\n      \u003cdependency\u003e\n        \u003cartifactId\u003eanotherlibrary-using-httpclient\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n      \u003c/dependency\u003e\n      ...\n    \u003c/dependencies\u003e\n    ```\n\n## Release Notes\n\nSee [GitHub releases](https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin/releases) for current release notes.\nReleases before 2019 are described in the archived [Changelog](https://github.com/jenkinsci/apache-httpcomponents-client-4-api-plugin/blob/apache-httpcomponents-client-4-api-4.5.5-2.0/CHANGELOG.md).\n\n## License\n\n* Plugin source and documentation - [MIT License](http://opensource.org/licenses/MIT)\n* Nested library is licensed with [Apache License, Version 2.0](http://www.apache.org/licenses/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Fapache-httpcomponents-client-4-api-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkinsci%2Fapache-httpcomponents-client-4-api-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Fapache-httpcomponents-client-4-api-plugin/lists"}