davidmoten/aws-maven-plugin

Support for server credentials in settings.xml

开放

#1 创建于 2017年3月16日

 (3 条评论) (1 个反应) (0 位负责人)Java (13 个派生)github user discovery
enhancementhelp wanted

仓库指标

星标
 (29 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

The handling of credentials could be improved. Instead of directly providing the keys in the plugin configuration.

Use the DefaultAWSCredentialsProviderChain

This means that you can use the .aws/credentials shared with the aws command line tool from Amazon. Really userfriendly. Perhaps it should be explicitly turned on by referring directly to a AWS configuration profile name in a property.

Standard maven credential handling

it is possible to use the standard credential handling in Maven. For example in settings.xml you can write something like

<server>
            <id>aws.amazon.com</id>
            <username>XXXYYYACCESS_KEYKLFJKELw</username>
            <password>jkshfdakjlsdfSECRET_KEYlkdjslkfds</password>
</server>

and have a property where you can refer to the server definition id.

贡献者指南