build.gradle.kts 360 B

12345678910111213141516
  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. testImplementation(project(":instrumentation:mongo:mongo-3.1:testing"))
  8. }
  9. tasks {
  10. named<Test>("test") {
  11. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
  12. }
  13. }