Temporary fix for testLatestDeps failure (#7169)
Tracking issues to fix for real: #7170, #7171
This commit is contained in:
parent
a4938a70e0
commit
4e36285b6c
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue