-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configurable S3 endpoints #7
Comments
This is basically required on our end, we are unable to use maven-s3-wagon at all due to not being able to configure the endpoint and our s3 repo sitting in the south-east asia region |
On our end, this isn't the actual issue. It turns out that the S3 client by default (since 1.4) automatically deals with buckets in different regions. In other words, regardless of what region your bucket is in, the S3 client will upload your files to correct bucket with the correct endpoint In our case, the issue was that setting the default ACL (which with maven-s3-wagon was publicRead) was causing issues with private S3 buckets, hence the reason for this pull request #22 |
I have the same problem too, we would like to use Minio s3 server for storing artifact and configure s3-wagon to use Minio server URL as AWS endpoint. |
As far as I understand, at the moment, the plugin doesn't support any other S3 endpoints except
s3
, the default one. My bucket is in Singapour and its endpoint iss3-ap-southeast-1
. Would be nice to make it possible to configure an end point. Maybe insettings.xml
insideserver
element (http://maven.apache.org/settings.html#Servers):The text was updated successfully, but these errors were encountered: