Set up a Gradle project
You can use Gradle
To manage SDK dependencies for your Gradle project, import the Maven bill of materials (BOM) for the AWS SDK for Java into the build.gradle
file.
Note
In the following examples, replace 2.20.56 in the Gradle build file with the latest version of the AWS SDK for Java v2. Find the latest version in the AWS SDK for Java API Reference version 2.x.
-
Add the BOM (Bill of Materials) to the dependencies section of the file.
... dependencies { implementation platform('software.amazon.awssdk:bom:2.20.56') // Declare individual SDK dependencies without version. ... }
-
Specify the SDK modules to use in the dependencies section. For example, the following includes a dependency for Amazon Simple Storage Service.
... dependencies { ... implementation 'software.amazon.awssdk:s3' ... }
Gradle automatically resolves the correct version of your SDK dependencies by using the information from the BOM.
The following shows a complete Gradle build file using the Groovy and Kotlin DSLs. The build file contains dependencies for Amazon S3, authentication, logging, and testing. The source and target version of Java is version 11.
Note
In the previous example, replace the dependency for Amazon S3 with the dependencies of the
AWS services you will use in your project. The modules (dependencies)
that are managed by the AWS SDK for Java BOM are listed on the Maven
central repository
For more information about specifying SDK dependencies by using the BOM, see Setting up an Apache Maven project.