build.gradle.kts 461 B

12345678910111213141516171819
  1. plugins {
  2. id("otel.library-instrumentation")
  3. id("otel.nullaway-conventions")
  4. }
  5. dependencies {
  6. library("org.mongodb:mongo-java-driver:3.1.0")
  7. compileOnly("com.google.auto.value:auto-value-annotations")
  8. annotationProcessor("com.google.auto.value:auto-value")
  9. testImplementation(project(":instrumentation:mongo:mongo-3.1:testing"))
  10. }
  11. tasks {
  12. test {
  13. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
  14. }
  15. }