12345678910111213141516171819 |
- plugins {
- id("otel.library-instrumentation")
- id("otel.nullaway-conventions")
- }
- dependencies {
- library("org.mongodb:mongo-java-driver:3.1.0")
- compileOnly("com.google.auto.value:auto-value-annotations")
- annotationProcessor("com.google.auto.value:auto-value")
- testImplementation(project(":instrumentation:mongo:mongo-3.1:testing"))
- }
- tasks {
- test {
- usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
- }
- }
|