You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the <username> and <password> tags in settings.xml don't support environment variables. When I try using <username>${env.AWS_ACCESS_KEY_ID}</username> for example, the string literal "${env.AWS_ACCESS_KEY_ID}" is sent to AWS. Otherwise, Maven does support environment variables, so would be nice to have this support by this plugin as well.
The text was updated successfully, but these errors were encountered:
the plugin uses the DefaultCredentialsProvider, so you shouldn't need to specify those environment variables in the settings.xml, they should just be automatically picked up provided they match the expected variable names.
Currently, the
<username>
and<password>
tags in settings.xml don't support environment variables. When I try using<username>${env.AWS_ACCESS_KEY_ID}</username>
for example, the string literal "${env.AWS_ACCESS_KEY_ID}" is sent to AWS. Otherwise, Maven does support environment variables, so would be nice to have this support by this plugin as well.The text was updated successfully, but these errors were encountered: