Reputation: 22701
We are using Amazon S3 to manage the maven artifacts.
Currently, if we do mvn deploy
, the release artifacts gets overwritten on Amazon s3.
Ideally the release artifacts should be immutable. How can we ensure the same?
Upvotes: 0
Views: 149
Reputation: 31
Check S3 Object Lock functionality. Probably it's what you are looking for. But be careful, with some policies object can be removed just together with an AWS account.
Upvotes: 1