Skip to content

Commit 32728c6

Browse files
committed
updated the Kotlin SDK build number in BOM
1 parent 50f1143 commit 32728c6

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

kotlin/services/sns/build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ repositories {
2929
apply(plugin = "org.jlleitschuh.gradle.ktlint")
3030

3131
dependencies {
32-
implementation("aws.sdk.kotlin:sns:1.3.112")
33-
implementation("aws.sdk.kotlin:secretsmanager:1.3.112")
34-
implementation("aws.smithy.kotlin:http-client-engine-okhttp:0.30.0")
35-
implementation("aws.smithy.kotlin:http-client-engine-crt:0.30.0")
32+
implementation(platform("aws.sdk.kotlin:bom:1.3.112"))
33+
implementation("aws.sdk.kotlin:sns")
34+
implementation("aws.sdk.kotlin:secretsmanager")
35+
implementation("aws.smithy.kotlin:http-client-engine-okhttp")
36+
implementation("aws.smithy.kotlin:http-client-engine-crt")
3637
implementation("com.google.code.gson:gson:2.10")
3738
testImplementation("org.junit.jupiter:junit-jupiter:5.9.0")
3839
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")

kotlin/services/sqs/build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ repositories {
2727
}
2828
apply(plugin = "org.jlleitschuh.gradle.ktlint")
2929
dependencies {
30-
implementation("aws.sdk.kotlin:sqs:1.3.112")
31-
implementation("aws.sdk.kotlin:secretsmanager:1.3.112")
32-
implementation("aws.smithy.kotlin:http-client-engine-okhttp:0.30.0")
33-
implementation("aws.smithy.kotlin:http-client-engine-crt:0.30.0")
30+
implementation(platform("aws.sdk.kotlin:bom:1.3.112"))
31+
implementation("aws.sdk.kotlin:sqs")
32+
implementation("aws.sdk.kotlin:secretsmanager")
33+
implementation("aws.smithy.kotlin:http-client-engine-okhttp")
34+
implementation("aws.smithy.kotlin:http-client-engine-crt")
3435
implementation("com.google.code.gson:gson:2.10")
3536
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
3637
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")

0 commit comments

Comments
 (0)