46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
id("otel.java-conventions")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("io.r2dbc")
|
|
module.set("r2dbc-spi")
|
|
versions.set("[1.0.0.RELEASE,)")
|
|
extraDependency("io.projectreactor:reactor-core:3.4.12")
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
val shadedDep = project(":instrumentation:r2dbc-1.0:library-instrumentation-shaded")
|
|
output.dir(
|
|
shadedDep.file("build/extracted/shadow"),
|
|
"builtBy" to ":instrumentation:r2dbc-1.0:library-instrumentation-shaded:extractShadowJar",
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library("io.r2dbc:r2dbc-spi:1.0.0.RELEASE")
|
|
compileOnly(project(path = ":instrumentation:r2dbc-1.0:library-instrumentation-shaded", configuration = "shadow"))
|
|
|
|
testImplementation(project(":instrumentation:r2dbc-1.0:testing"))
|
|
testInstrumentation(project(":instrumentation:reactor:reactor-3.1:javaagent"))
|
|
}
|
|
|
|
tasks {
|
|
withType<Test>().configureEach {
|
|
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service)
|
|
}
|
|
|
|
val testStableSemconv by registering(Test::class) {
|
|
jvmArgs("-Dotel.semconv-stability.opt-in=database")
|
|
}
|
|
|
|
check {
|
|
dependsOn(testStableSemconv)
|
|
}
|
|
}
|