Skip to content

Commit 8819ac0

Browse files
Update logback tests and logback-app to use Java 8-compatible logback versions
1 parent 9fdb26c commit 8819ac0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/logback-app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ repositories {
1212

1313
dependencies {
1414
implementation(project(":logback"))
15-
implementation("ch.qos.logback:logback-core:1.4.11")
16-
implementation("ch.qos.logback:logback-classic:1.4.11")
15+
implementation("ch.qos.logback:logback-core:1.3.9")
16+
implementation("ch.qos.logback:logback-classic:1.3.9")
1717
implementation("com.fasterxml.jackson.core:jackson-core:2.11.1")
1818

1919
implementation("com.newrelic.agent.java:newrelic-api:8.6.0")
2020
}
2121

2222

2323
configure<JavaPluginConvention> {
24-
sourceCompatibility = JavaVersion.VERSION_11
25-
targetCompatibility = JavaVersion.VERSION_11
24+
sourceCompatibility = JavaVersion.VERSION_1_8
25+
targetCompatibility = JavaVersion.VERSION_1_8
2626
}
2727

2828
application {

logback/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ dependencies {
2727

2828
includeInJar(project(":core"))
2929

30-
testImplementation("ch.qos.logback:logback-core:1.4.11");
31-
testImplementation("ch.qos.logback:logback-classic:1.4.11");
30+
testImplementation("ch.qos.logback:logback-core:1.3.9");
31+
testImplementation("ch.qos.logback:logback-classic:1.3.9");
3232
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
3333
testImplementation("com.google.guava:guava:30.0-jre")
3434
testImplementation("org.mockito:mockito-core:3.4.4")

0 commit comments

Comments
 (0)