Temporary fix for testLatestDeps failure (#7169)

Tracking issues to fix for real: #7170, #7171
This commit is contained in:
Trask Stalnaker 2022-11-14 18:20:46 -08:00 committed by GitHub
parent a4938a70e0
commit 4e36285b6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -25,10 +25,14 @@ dependencies {
testInstrumentation(project(":instrumentation:mongo:mongo-async-3.3:javaagent")) testInstrumentation(project(":instrumentation:mongo:mongo-async-3.3:javaagent"))
testInstrumentation(project(":instrumentation:mongo:mongo-3.1:javaagent")) testInstrumentation(project(":instrumentation:mongo:mongo-3.1:javaagent"))
testInstrumentation(project(":instrumentation:mongo:mongo-3.7:javaagent")) testInstrumentation(project(":instrumentation:mongo:mongo-3.7:javaagent"))
latestDepTestLibrary("org.mongodb:mongodb-driver-core:4.7.+")
latestDepTestLibrary("org.mongodb:mongodb-driver-sync:4.7.+")
latestDepTestLibrary("org.mongodb:mongodb-driver-reactivestreams:4.7.+")
} }
tasks { tasks {
test { test {
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService()) usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
} }
} }

View File

@ -17,6 +17,8 @@ dependencies {
library("org.apache.tomcat.embed:tomcat-embed-core:10.0.0") library("org.apache.tomcat.embed:tomcat-embed-core:10.0.0")
latestDepTestLibrary("org.apache.tomcat.embed:tomcat-embed-core:10.1.1")
// Make sure nothing breaks due to both 7.0 and 10.0 modules being present together // Make sure nothing breaks due to both 7.0 and 10.0 modules being present together
testInstrumentation(project(":instrumentation:tomcat:tomcat-7.0:javaagent")) testInstrumentation(project(":instrumentation:tomcat:tomcat-7.0:javaagent"))
} }