Skip to content

Commit

Permalink
Upgrade to logback-classic 1.3.14 (#1399)
Browse files Browse the repository at this point in the history
Note that logback-classic is only used for testing.

JAVA-5482
  • Loading branch information
jyemin authored May 23, 2024
1 parent c161afc commit 790185f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ ext {
mongoCryptVersion = '1.8.0'
projectReactorVersion = '2022.0.0'
junitBomVersion = '5.8.2'
logbackVersion = '1.3.14'
gitVersion = getGitVersion()
}

Expand Down Expand Up @@ -125,7 +126,7 @@ configure(scalaProjects) {
testImplementation('org.scalatest:scalatest-shouldmatchers_%%:3.2.9')
testImplementation('org.scalatestplus:junit-4-13_%%:3.2.9.0')
testImplementation('org.scalatestplus:mockito-3-12_%%:3.2.10.0')
testImplementation('ch.qos.logback:logback-classic:1.1.3')
testImplementation("ch.qos.logback:logback-classic:$logbackVersion")
testImplementation('org.reflections:reflections:0.9.10')
}

Expand Down Expand Up @@ -265,7 +266,7 @@ configure(javaCodeCheckedProjects) {
testImplementation 'cglib:cglib-nodep:2.2.2'
testImplementation 'org.objenesis:objenesis:1.3'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'ch.qos.logback:logback-classic:1.1.1'
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
testImplementation project(':util:spock') //Adding categories to classpath
}

Expand Down
2 changes: 1 addition & 1 deletion driver-benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sourceSets {

dependencies {
api project(':driver-sync')
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation "ch.qos.logback:logback-classic:$logbackVersion"
}

javadoc {
Expand Down
2 changes: 1 addition & 1 deletion driver-workload-executor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
implementation project(':driver-sync')
implementation project(':driver-core').sourceSets.test.output
implementation project(':driver-sync').sourceSets.test.output
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation "ch.qos.logback:logback-classic:$logbackVersion"
implementation(platform("org.junit:junit-bom:$junitBomVersion"))
implementation('org.junit.jupiter:junit-jupiter')
implementation('org.junit.vintage:junit-vintage-engine')
Expand Down
2 changes: 1 addition & 1 deletion graalvm-native-image-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {
implementation project(':driver-reactive-streams').sourceSets.test.output
implementation "org.mongodb:mongodb-crypt:$mongoCryptVersion"
implementation 'org.slf4j:slf4j-api:2.0.12'
implementation 'ch.qos.logback:logback-classic:1.5.3'
implementation "ch.qos.logback:logback-classic:$logbackVersion"
implementation platform("io.projectreactor:reactor-bom:$projectReactorVersion")
implementation 'io.projectreactor:reactor-core'
}

0 comments on commit 790185f

Please sign in to comment.