20 lines
466 B
Plaintext
20 lines
466 B
Plaintext
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"].getService())
|
|
}
|
|
}
|