123456789101112131415161718192021222324 |
- plugins {
- id("otel.library-instrumentation")
- id("otel.nullaway-conventions")
- }
- dependencies {
- library("com.linecorp.armeria:armeria:1.3.0")
- testImplementation(project(":instrumentation:armeria-1.3:testing"))
- }
- tasks {
- val testStableSemconv by registering(Test::class) {
- jvmArgs("-Dotel.semconv-stability.opt-in=http")
- }
- withType<Test>().configureEach {
- systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
- }
- check {
- dependsOn(testStableSemconv)
- }
- }
|