build.gradle.kts 432 B

123456789101112131415
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("io.r2dbc:r2dbc-spi:1.0.0.RELEASE")
  6. implementation("io.r2dbc:r2dbc-proxy")
  7. testImplementation(project(":instrumentation:r2dbc-1.0:testing"))
  8. testImplementation(project(":instrumentation:reactor:reactor-3.1:library"))
  9. }
  10. tasks.withType<Test>().configureEach {
  11. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
  12. }