Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS SDK for S3 only

Tags:

java

amazon-s3

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?

like image 674
Gelin Luo Avatar asked Nov 16 '25 03:11

Gelin Luo


1 Answers

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.

like image 115
MartinTeeVarga Avatar answered Nov 18 '25 18:11

MartinTeeVarga