Skip to content

Commit

Permalink
Update logback test dependencies (#6554)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Sep 7, 2022
1 parent 0d6f0b1 commit eb43ea9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
// pin the version strictly to avoid overriding by dependencyManagement versions
compileOnly("ch.qos.logback:logback-classic") {
version {
strictly("0.9.16")
strictly("1.0.0")
}
}
compileOnly("org.slf4j:slf4j-api") {
Expand All @@ -30,11 +30,9 @@ dependencies {
if (findProperty("testLatestDeps") as Boolean) {
testImplementation("ch.qos.logback:logback-classic:+")
} else {
// TODO these versions are actually used during test
// currently our tests fail for logback-classic 0.9.16
testImplementation("ch.qos.logback:logback-classic") {
version {
strictly("1.2.11")
strictly("1.0.0")
}
}
testImplementation("org.slf4j:slf4j-api") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,26 @@ dependencies {
// pin the version strictly to avoid overriding by dependencyManagement versions
compileOnly("ch.qos.logback:logback-classic") {
version {
strictly("0.9.16")
strictly("1.0.0")
}
}
compileOnly("org.slf4j:slf4j-api") {
version {
strictly("1.5.8")
strictly("1.6.4")
}
}

if (findProperty("testLatestDeps") as Boolean) {
testImplementation("ch.qos.logback:logback-classic:+")
} else {
// TODO these versions are actually used during test
// currently our tests fail for logback-classic 0.9.16
testImplementation("ch.qos.logback:logback-classic") {
version {
strictly("1.2.11")
strictly("1.0.0")
}
}
testImplementation("org.slf4j:slf4j-api") {
version {
strictly("1.7.36")
strictly("1.6.4")
}
}
}
Expand Down

0 comments on commit eb43ea9

Please sign in to comment.