Add testcontainersBuildService to r2dbc tests (#8184)

This commit is contained in:
Lauri Tulmin 2023-03-31 11:31:48 +03:00 committed by GitHub
parent d007ccce82
commit 9e0d177d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -29,3 +29,7 @@ dependencies {
testImplementation(project(":instrumentation:r2dbc-1.0:testing"))
testInstrumentation(project(":instrumentation:reactor:reactor-3.1:javaagent"))
}
tasks.withType<Test>().configureEach {
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
}

View File

@ -9,3 +9,7 @@ dependencies {
testImplementation(project(":instrumentation:r2dbc-1.0:testing"))
testImplementation(project(":instrumentation:reactor:reactor-3.1:library"))
}
tasks.withType<Test>().configureEach {
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
}