I have add the following dependencies to allow me to access S3 bucket from within Java application
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.10.9</version>
</dependency>
And I found it downloaded 53 jar files which add up to 21 MB, this is a bit insane. Is there a smaller package allows me to do that?
The package you are looking for is:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.10.9</version>
</dependency>
Or the latest version which now is 1.10.54. See the maven repository for more details.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With