Skip to content
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

Migrate to AWS SDK v2 #307

Merged
merged 10 commits into from
Nov 18, 2020
Merged
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@
<dependencies>

<dependency>
<groupId>com.amazonaws</groupId>
anas-aso marked this conversation as resolved.
Show resolved Hide resolved
<artifactId>aws-java-sdk-cloudwatch</artifactId>
<version>1.11.839</version>
<groupId>software.amazon.awssdk</groupId>
<artifactId>cloudwatch</artifactId>
<version>2.15.20</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>1.11.839</version>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sts</artifactId>
<version>2.15.20</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-resourcegroupstaggingapi</artifactId>
<version>1.11.839</version>
<groupId>software.amazon.awssdk</groupId>
<artifactId>resourcegroupstaggingapi</artifactId>
<version>2.15.20</version>
</dependency>
<!--
Older versions of jackson-databind have remote code execution vulnerabilities
Expand Down
Loading