12345678910111213141516 |
- plugins {
- id("otel.library-instrumentation")
- id("otel.nullaway-conventions")
- }
- dependencies {
- library("com.linecorp.armeria:armeria:1.3.0")
- testImplementation(project(":instrumentation:armeria:armeria-1.3:testing"))
- }
- tasks {
- withType<Test>().configureEach {
- systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
- }
- }
|