AWS SDK for Java Version 1: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 16: Line 16:


dependencies {
dependencies {
  implementation platform('com.amazonaws:aws-java-sdk-bom:1.11.1000')
  implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.79')
  // Declare individual SDK dependencies without version
  // Declare individual SDK dependencies without version
  implementation 'com.amazonaws:aws-java-sdk-s3'
  implementation 'com.amazonaws:aws-java-sdk-s3'
}
}
</syntaxhighlight>
</syntaxhighlight>
=Component APIs that Use SDK for Java Version 1=
=Component APIs that Use SDK for Java Version 1=
* [[AWS S3 Java API|AWS S3 Java API]]
* [[AWS S3 Java API|AWS S3 Java API]]

Revision as of 05:39, 3 October 2021

External

Internal

Gradle Project Setup

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

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

repositories {
 mavenCentral()
}

dependencies {
 implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.79')
 // Declare individual SDK dependencies without version
 implementation 'com.amazonaws:aws-java-sdk-s3'
}

Component APIs that Use SDK for Java Version 1