Skip to content

Commit 82d8b79

Browse files
authored
Bump Java SDK (#3604)
1 parent ea13875 commit 82d8b79

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[versions]
22
apacheCommons = "2.8.0"
33
assertJ = "3.20.2" # Upgrading leads to SAM errors: https://youtrack.jetbrains.com/issue/KT-17765
4-
awsSdk = "2.18.20"
4+
# match with <root>/settings.gradle.kts
5+
awsSdk = "2.20.48"
56
commonmark = "0.17.1"
67
detekt = "1.21.0"
78
intellijGradle = "1.13.2"
@@ -31,6 +32,7 @@ zjsonpatch = "0.4.11"
3132
assertj = { module = "org.assertj:assertj-core", version.ref = "assertJ" }
3233
aws-apacheClient = { module = "software.amazon.awssdk:apache-client", version.ref = "awsSdk" }
3334
aws-apprunner = { module = "software.amazon.awssdk:apprunner", version.ref = "awsSdk" }
35+
aws-bom = { module = "software.amazon.awssdk:bom", version.ref = "awsSdk" }
3436
aws-cloudcontrol = { module = "software.amazon.awssdk:cloudcontrol", version.ref = "awsSdk" }
3537
aws-cloudformation = { module = "software.amazon.awssdk:cloudformation", version.ref = "awsSdk" }
3638
aws-cloudwatchlogs = { module = "software.amazon.awssdk:cloudwatchlogs", version.ref = "awsSdk" }

settings.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ pluginManagement {
1818
}
1919
}
2020

21+
buildscript {
22+
// match with version catalog, s3-build-cache has silent classpath conflict with codegen task
23+
// also since this is a settings plugin, we can't use a version catalog
24+
// TODO: can we serve a remote cache out of CloudFront instead? https://docs.gradle.org/8.1/userguide/build_cache.html#sec:build_cache_configure_remote
25+
dependencies {
26+
classpath(platform("software.amazon.awssdk:bom:2.20.48"))
27+
}
28+
}
29+
2130
rootProject.name = "aws-toolkit-jetbrains"
2231

2332
include("resources")
@@ -59,7 +68,7 @@ include("detekt-rules")
5968

6069
plugins {
6170
id("com.gradle.enterprise").version("3.4.1")
62-
id("com.github.burrunan.s3-build-cache").version("1.2")
71+
id("com.github.burrunan.s3-build-cache").version("1.5")
6372
}
6473

6574
gradleEnterprise {

0 commit comments

Comments
 (0)