Skip to content

Commit 24f9867

Browse files
committed
build(gradle): downgrade logback for jdk compatibility
1 parent 3c85559 commit 24f9867

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

helpers/test-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ val year: String by project
1717
dependencies {
1818
implementation(project(":sdk"))
1919
implementation(project(":server")) // Only to access defaults of sc.server.Configuration
20-
implementation("ch.qos.logback", "logback-classic", "1.5.18") // Update to 1.4 with JDK upgrade
20+
implementation("ch.qos.logback", "logback-classic", "1.3.15") // Update to 1.4 with JDK upgrade
2121
runtimeOnly(project(":plugin$year"))
2222
}
2323

player/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ application {
2323

2424
dependencies {
2525
api(project(":sdk"))
26-
implementation("ch.qos.logback", "logback-classic", "1.5.18")
26+
implementation("ch.qos.logback", "logback-classic", "1.3.15")
2727

2828
runtimeOnly(project(":plugin$year"))
2929
//runtimeOnly(kotlin("script-runtime"))

server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ application {
1414
val year: String by project
1515
dependencies {
1616
api(project(":sdk"))
17-
implementation("ch.qos.logback", "logback-classic", "1.5.18") // Update to 1.4 with JDK upgrade
17+
implementation("ch.qos.logback", "logback-classic", "1.3.15") // Update to 1.4 with JDK upgrade
1818

1919
runtimeOnly(project(":plugin$year"))
2020
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") // legacy java tests

0 commit comments

Comments
 (0)