Skip to content

Commit 50b18f7

Browse files
committed
move slf4j version to props
1 parent a6418c1 commit 50b18f7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ val jupiterVersion: String by project
1919
val commonsIoVersion: String by project
2020
val auth0JwtVersion: String by project
2121
val vertxVersion: String by project
22+
val slf4jVersion: String by project
2223

2324
group = cliGroup
2425
version = projectVersion
@@ -36,8 +37,8 @@ dependencies {
3637

3738
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
3839
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
39-
implementation("org.slf4j:slf4j-api:1.7.33")
40-
implementation("org.slf4j:slf4j-nop:1.7.33")
40+
implementation("org.slf4j:slf4j-api:$slf4jVersion")
41+
implementation("org.slf4j:slf4j-nop:$slf4jVersion")
4142
implementation("io.vertx:vertx-core:$vertxVersion")
4243
implementation("io.vertx:vertx-tcp-eventbus-bridge:$vertxVersion")
4344
implementation("io.vertx:vertx-lang-kotlin-coroutines:$vertxVersion")

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ bouncycastleVersion = 1.69
1313
jupiterVersion = 5.8.0
1414
commonsIoVersion = 2.11.0
1515
auth0JwtVersion = 3.18.2
16+
slf4jVersion=1.7.33
1617

1718
kotlinVersion=1.6.10

0 commit comments

Comments
 (0)