-
Notifications
You must be signed in to change notification settings - Fork 226
Update SDK versions for JavaSDK 1+2 and KCL #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<properties> | ||
<awssdk.version>2.19.2</awssdk.version> | ||
<aws-java-sdk.version>1.12.370</aws-java-sdk.version> | ||
<kcl.version>2.5.2</kcl.version> | ||
<awssdk.version>2.25.11</awssdk.version> | ||
<aws-java-sdk.version>1.12.696</aws-java-sdk.version> | ||
<kcl.version>2.5.8</kcl.version> | ||
<netty.version>4.1.100.Final</netty.version> | ||
<netty-reactive.version>2.0.6</netty-reactive.version> | ||
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version> | ||
|
@@ -111,6 +111,31 @@ | |
<artifactId>auth</artifactId> | ||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>http-auth-spi</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason these have to be added There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These were required on running, without which there was a class not found error when authenticating, with no code changes in my code from previous implementation. |
||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>http-auth</artifactId> | ||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>checksums-spi</artifactId> | ||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>checksums</artifactId> | ||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>identity-spi</artifactId> | ||
<version>${awssdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>http-client-spi</artifactId> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still need the -SNAPSHOT version for testing. We should not be using this version as it will confuse local builds with public releases