Skip to content

Commit 3e95dad

Browse files
committed
move slf4j to libs
1 parent d0c98f8 commit 3e95dad

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ smithy-version = "1.60.2"
99
smithy-gradle-plugin-version = "1.3.0"
1010
junit-version = "5.10.1"
1111
coroutines-version = "1.10.2"
12+
slf4j = "2.0.17"
1213

1314
[libraries]
1415
aws-sdk-cloudwatch = { module = "aws.sdk.kotlin:cloudwatch", version.ref = "aws-sdk-version" }
@@ -22,6 +23,7 @@ smithy-model = { module = "software.amazon.smithy:smithy-model", version.ref = "
2223
smithy-gradle-base-plugin = { module = "software.amazon.smithy.gradle:smithy-base", version.ref = "smithy-gradle-plugin-version" }
2324
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-version" }
2425
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines-version" }
26+
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" }
2527

2628
[plugins]
2729
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin-version" }

ktlint-rules/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ kotlin {
2424
dependencies {
2525
implementation(kotlin("test"))
2626
implementation(libs.ktlint.rule.engine)
27-
implementation("org.slf4j:slf4j-simple:2.0.7") // TODO: Move to libs
27+
implementation(libs.slf4j.simple) // Required by ktlint rule engine tests
2828
}
2929
}
3030
}

0 commit comments

Comments
 (0)