Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ buildscript {

ext {
configDir = new File(rootDir, 'config')
jnrUnixsocketVersion = '0.38.13'
nettyVersion = '4.1.75.Final'
nettyTcnativeBoringsslVersion = '2.0.48.Final'
jnrUnixsocketVersion = '0.38.17'
nettyVersion = '4.1.79.Final'
nettyTcnativeBoringsslVersion = '2.0.54.Final'
snappyVersion = '1.1.8.4'
zstdVersion = '1.5.0-4'
zstdVersion = '1.5.2-3'
mongoCryptVersion = '1.6.0-alpha0'
projectReactorVersion = 'Californium-SR23'
projectReactorVersion = '2020.0.22'
junitBomVersion = '5.8.1'
gitVersion = getGitVersion()
}
Expand Down Expand Up @@ -245,7 +245,7 @@ configure(javaCodeCheckedProjects) {
testImplementation('org.junit.jupiter:junit-jupiter-params')
testImplementation('org.junit.vintage:junit-vintage-engine')

testImplementation platform('org.spockframework:spock-bom:2.0-groovy-3.0')
testImplementation platform('org.spockframework:spock-bom:2.1-groovy-3.0')
testImplementation 'org.spockframework:spock-core'
testImplementation 'org.spockframework:spock-junit4'
testImplementation("org.mockito:mockito-core:3.8.0")
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.1.1'
implementation 'ch.qos.logback:logback-classic:1.2.11'
}

javadoc {
Expand Down
4 changes: 2 additions & 2 deletions driver-reactive-streams/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ dependencies {
api project(path: ':bson', configuration: 'default')
api project(path: ':driver-core', configuration: 'default')

api 'org.reactivestreams:reactive-streams:1.0.3'
api 'org.reactivestreams:reactive-streams:1.0.4'
implementation platform("io.projectreactor:reactor-bom:$projectReactorVersion")
implementation 'io.projectreactor:reactor-core'

testImplementation project(':bson').sourceSets.test.output
testImplementation project(':driver-sync')
testImplementation project(':driver-sync').sourceSets.test.output
testImplementation project(':driver-core').sourceSets.test.output
testImplementation 'org.reactivestreams:reactive-streams-tck:1.0.3'
testImplementation 'org.reactivestreams:reactive-streams-tck:1.0.4'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.mockito:mockito-junit-jupiter:3.5.13'
testRuntimeOnly project(path: ':driver-core', configuration: 'consumableTestRuntimeOnly')
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.1.1'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation(platform("org.junit:junit-bom:$junitBomVersion"))
implementation('org.junit.jupiter:junit-jupiter')
implementation('org.junit.vintage:junit-vintage-engine')
Expand Down