build.gradle.kts 493 B

1234567891011121314151617
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. dependencies {
  5. implementation(project(":testing-common"))
  6. implementation("io.r2dbc:r2dbc-spi:1.0.0.RELEASE")
  7. implementation(project(":instrumentation-api-incubator"))
  8. implementation("org.testcontainers:junit-jupiter")
  9. compileOnly("io.projectreactor:reactor-core:3.4.12")
  10. runtimeOnly("dev.miku:r2dbc-mysql:0.8.2.RELEASE")
  11. runtimeOnly("org.mariadb:r2dbc-mariadb:1.1.3")
  12. runtimeOnly("org.postgresql:r2dbc-postgresql:1.0.1.RELEASE")
  13. }