{"id":36418224,"url":"https://github.com/dangernoodle-io/codeartifact-maven-extension","last_synced_at":"2026-01-11T17:01:24.227Z","repository":{"id":143367685,"uuid":"609627362","full_name":"dangernoodle-io/codeartifact-maven-extension","owner":"dangernoodle-io","description":"Maven extension that provides AWS CodeArtifact authentication","archived":false,"fork":false,"pushed_at":"2025-06-17T20:08:00.000Z","size":54,"stargazers_count":5,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T20:38:01.001Z","etag":null,"topics":["codeartifact","maven-resolver","maven-wagon"],"latest_commit_sha":null,"homepage":"","language":"Java","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/dangernoodle-io.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-04T18:47:08.000Z","updated_at":"2025-06-17T20:08:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"a912842d-d507-488b-93b5-271098d02d1d","html_url":"https://github.com/dangernoodle-io/codeartifact-maven-extension","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dangernoodle-io/codeartifact-maven-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dangernoodle-io%2Fcodeartifact-maven-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dangernoodle-io%2Fcodeartifact-maven-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dangernoodle-io%2Fcodeartifact-maven-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dangernoodle-io%2Fcodeartifact-maven-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dangernoodle-io","download_url":"https://codeload.github.com/dangernoodle-io/codeartifact-maven-extension/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dangernoodle-io%2Fcodeartifact-maven-extension/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28314255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["codeartifact","maven-resolver","maven-wagon"],"created_at":"2026-01-11T17:00:59.622Z","updated_at":"2026-01-11T17:01:24.211Z","avatar_url":"https://github.com/dangernoodle-io.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# codeartifact-maven-extension\n\n![maven](https://img.shields.io/maven-central/v/io.dangernoodle/codeartifact-maven-extension)\n[![maven-build](https://github.com/dangernoodle-io/codeartifact-maven-extension/actions/workflows/maven-build.yml/badge.svg)](https://github.com/dangernoodle-io/codeartifact-maven-extension/actions/workflows/maven-build.yml)\n[![maven-release](https://github.com/dangernoodle-io/codeartifact-maven-extension/actions/workflows/maven-release.yml/badge.svg)](https://github.com/dangernoodle-io/codeartifact-maven-extension/actions/workflows/maven-release.yml)\n[![Coverage Status](https://coveralls.io/repos/github/dangernoodle-io/codeartifact-maven-extension/badge.svg?branch=main)](https://coveralls.io/github/dangernoodle-io/codeartifact-maven-extension?branch=main)\n\nMaven `build` extension that provides a [resolver](https://maven.apache.org/resolver/index.html) and \n[wagon](https://maven.apache.org/wagon/index.html) implementation capable of authenticating against \n[AWS CodeArtifact](https://aws.amazon.com/codeartifact/) before uploading/downloading artifacts.\n\nJava 8 or greater is required. The appropriate implementation will automatically be selected based upon your maven\nversion. See [here](https://maven.apache.org/guides/mini/guide-resolver-transport.html) for additional details.\n\n## Usage\n\nThe easiest way to configure the plugin is to add an entry to the `.mvn/extensions.xml` file (see [here](https://maven.apache.org/configure.html)\nfor more details) like so:\n\n```xml\n\u003cextensions xmlns=\"http://maven.apache.org/EXTENSIONS/1.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd\"\u003e\n  \u003cextension\u003e\n     \u003cgroupId\u003eio.dangernoodle\u003c/groupId\u003e\n     \u003cartifactId\u003ecodeartifact-maven-extension\u003c/artifactId\u003e\n     \u003cversion\u003e${codeartifact-maven-extension.version}\u003c/version\u003e\n  \u003c/extension\u003e\n\u003c/extensions\u003e\n```\n\nThis is the recommended approach if you use a parent pom that is also stored within `codeartifact`. If you have a\nstandalone project and don't wish to use the `.mvn` directory, you can add the following to the build section of \nyour project's pom:\n\n```xml\n\n\u003cbuild\u003e\n  \u003cextensions\u003e\n    \u003cextension\u003e\n      \u003cgroupId\u003eio.dangernoodle\u003c/groupId\u003e\n      \u003cartifactId\u003ecodeartifact-maven-extension\u003c/artifactId\u003e\n      \u003cversion\u003e${codeartifact-maven-extension.version}\u003c/version\u003e\n    \u003c/extension\u003e\n  \u003c/extensions\u003e\n  ...\n\u003c/build\u003e\n```\n\n### Credentials\n\nThe extension automatically uses the [DefaultCredentialsProvider](https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html) to find AWS credentials. Be sure you have \nconfigured your environment accordingly.\n\nSeparately, static credentials can be provided in an a `server` entry in `maven-settings.xml`\n\n```xml\n\n\u003cservers\u003e\n  \u003cserver\u003e\n    \u003cid\u003ecodeartifact\u003c/id\u003e\n    \u003cusername\u003eAWS_ACCESS_KEY_ID\u003c/username\u003e\n    \u003cpassword\u003eAWS_SECRET_ACCESS_KEY\u003c/password\u003e\n  \u003c/server\u003e\n\u003c/servers\u003e\n```\n\nMake sure you are using appropriate security precautions if you are using static credentials.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdangernoodle-io%2Fcodeartifact-maven-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdangernoodle-io%2Fcodeartifact-maven-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdangernoodle-io%2Fcodeartifact-maven-extension/lists"}