Skip to content

Commit 6dbe818

Browse files
Update dependency org.slf4j:jul-to-slf4j from 1.7.36 to 2.0.0 (major v2) (#48)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Róbert Papp (TWiStErRob) <[email protected]>
1 parent 0ce547b commit 6dbe818

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle.kts

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ dependencies {
1717
implementation("commons-io:commons-io:2.11.0")
1818
implementation("org.bouncycastle:bcprov-jdk15on:1.70")
1919

20-
implementation("org.apache.logging.log4j:log4j-iostreams:2.19.0")
20+
val log4jVersion = "2.19.0"
21+
implementation("org.apache.logging.log4j:log4j-iostreams:$log4jVersion")
2122
implementation("org.assertj:assertj-core:3.23.1")
2223

2324
val junitVersion = "5.9.1"
@@ -26,8 +27,9 @@ dependencies {
2627

2728
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
2829
testRuntimeOnly("org.junit.platform:junit-platform-console:1.9.1")
29-
testRuntimeOnly("org.slf4j:jul-to-slf4j:1.7.36")
30-
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.19.0")
30+
testRuntimeOnly("org.slf4j:jul-to-slf4j:2.0.3")
31+
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl:$log4jVersion")
32+
testRuntimeOnly("org.apache.logging.log4j:log4j-core:$log4jVersion")
3133
}
3234

3335
val javaVersion = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)