AWS SDK for Java Version 2

From NovaOrdis Knowledge Base
Revision as of 05:19, 3 October 2021 by Ovidiu (talk | contribs) (→‎Internal)
Jump to navigation Jump to search

External

Internal

Gradle Project

https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/setup-project-gradle.html

Add the AWS SDK 2 BOM to the dependencies section of the file, and then declare individual SDK dependencies without a version:

dependencies {
 implementation platform('software.amazon.awssdk:bom:2.17.51')

 // Declare individual SDK dependencies without version
}

Dependency

SDK 2

repositories {
    
    mavenCentral()
}

dependencies {

    implementation 'software.amazon.awssdk:aws-sdk-java:2.17.51'
}