AWS SDK for Java Version 1: Difference between revisions
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
* [[Amazon Kinesis Stream with AWS SDK for Java#Overview|Amazon Kinesis Stream with AWS SDK for Java]] | * [[Amazon Kinesis Stream with AWS SDK for Java#Overview|Amazon Kinesis Stream with AWS SDK for Java]] | ||
* [[AWS_Java_Lambda_Development#Dependencies|Lambda]] | * [[AWS_Java_Lambda_Development#Dependencies|Lambda]] | ||
* [[Amazon Encryption SDK]] |
Revision as of 05:45, 3 October 2021
External
- Maven Repository Location https://repo1.maven.org/maven2/com/amazonaws/
- Developer Guide https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/welcome.html
- API Reference https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/
Internal
Gradle Project Setup
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'
}