{"id":21979974,"url":"https://github.com/jenkinsci/aws-java-sdk-plugin","last_synced_at":"2025-04-09T14:10:23.066Z","repository":{"id":38353809,"uuid":"41977124","full_name":"jenkinsci/aws-java-sdk-plugin","owner":"jenkinsci","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-19T14:03:22.000Z","size":423,"stargazers_count":8,"open_issues_count":2,"forks_count":54,"subscribers_count":97,"default_branch":"master","last_synced_at":"2025-04-02T12:08:48.669Z","etag":null,"topics":["aws","jenkins-api-plugin"],"latest_commit_sha":null,"homepage":"https://plugins.jenkins.io/aws-java-sdk/","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":"CHANGELOG.md","contributing":null,"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}},"created_at":"2015-09-05T22:06:00.000Z","updated_at":"2025-03-19T13:43:33.000Z","dependencies_parsed_at":"2023-11-11T14:28:18.288Z","dependency_job_id":"1f2b6a85-3289-4193-b66e-273b51735994","html_url":"https://github.com/jenkinsci/aws-java-sdk-plugin","commit_stats":{"total_commits":316,"total_committers":34,"mean_commits":9.294117647058824,"dds":0.5348101265822784,"last_synced_commit":"b7a0131984321ec9aec593d61a08df3c013c32aa"},"previous_names":[],"tags_count":76,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Faws-java-sdk-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Faws-java-sdk-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Faws-java-sdk-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Faws-java-sdk-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkinsci","download_url":"https://codeload.github.com/jenkinsci/aws-java-sdk-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248054194,"owners_count":21039952,"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":["aws","jenkins-api-plugin"],"created_at":"2024-11-29T17:08:47.314Z","updated_at":"2025-04-09T14:10:23.048Z","avatar_url":"https://github.com/jenkinsci.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Amazon Web Services SDK Plugin\n\n[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/aws-java-sdk.svg)](https://plugins.jenkins.io/aws-java-sdk)\n[![GitHub release](https://img.shields.io/github/v/release/jenkinsci/aws-java-sdk-plugin.svg?label=release)](https://github.com/jenkinsci/aws-java-sdk-plugin/releases/latest)\n[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/aws-java-sdk.svg?color=blue)](https://plugins.jenkins.io/aws-java-sdk)\n\nThis plugin provides the [AWS SDK for Java](https://aws.amazon.com/sdk-for-java/) as a library to be used by other plugins. It follows the same versioning as the AWS SDK itself.\n\nCommonly used modules have their own plugins, less used modules are in the `aws-java-sdk` plugin.\n\n## Requesting new instance types\n\nSome plugins, such as the [ec2-plugin](https://github.com/jenkinsci/ec2-plugin) rely on the AWS SDK to list available instance types. Updates of the AWS SDK come via this plugin.\n\nThere is a new release of the AWS SDK every day, and most updates are not relevant to most Jenkins users. \n\nAs the current maintainer of this library plugin, I am not actively monitoring the [AWS SDK changelog](https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md).\n\nIf you want to use a new instance type and it is not yet available through this plugin:\n* look up in what version of the AWS SDK it has been introduced ([changelog](https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md))\n* find the latest dependabot pull request bumping the AWS SDK ([link](https://github.com/jenkinsci/aws-java-sdk-plugin/pulls?q=is:pr+is:open+sort:updated-desc+revision))\n* ask for a merge and release after providing the instance type you are looking for, and the version of the AWS SDK it has been introduced in.\n\n## Plugins\n### aws-java-sdk-minimal\nThis plugins contains multiple modules.\nThese have been grouped together as `aws-java-sdk-core` needs some classes in the same classpath and the structured classloaders in Jenkins don't permit having them in different plugins. \n\n* aws-java-sdk-core\n* aws-java-sdk-kms\n* aws-java-sdk-s3\n* aws-java-sdk-sts\n* jmespath-java\n\n### aws-java-sdk-*\nContains an individual AWS Java SDK module with the same name.\n\n### aws-java-sdk\nContains all AWS Java SDK modules not already provided through a separate plugin. It depends on all other aws-java-sdk plugins and is very heavyweight.\n\n## Adding a new plugin\n\nIf you need to use an API that is not yet published as its own plugin, feel free to submit a pull request to create a plugin for it. This will avoid pulling the all-in-one `aws-java-sdk` plugin.\n\n* Create a new directory `aws-java-sdk-\u003cname\u003e`. The name should be identical to the aws sdk module.\n* Create `pom.xml`.\n  * Depend on `com.amazonaws:aws-java-sdk-\u003cname\u003e`. Exclude all transitive dependencies.\n  * Transitive dependencies should be replaced by their equivalent plugin dependency. Most APIs only depend on `aws-java-sdk-core` and `jmespath-java` (both are part of the `aws-java-sdk-minimal` plugin).\n* Create `src/main/resource/index.jelly`. Look at existing modules and adapt it.\n* Add the module to the root `pom.xml`.\n* Add the plugin dependency to `aws-java-sdk` and exclude the module from transitive dependencies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Faws-java-sdk-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkinsci%2Faws-java-sdk-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Faws-java-sdk-plugin/lists"}