build.gradle.kts 358 B

12345678910111213141516
  1. plugins {
  2. id("otel.library-instrumentation")
  3. id("otel.nullaway-conventions")
  4. }
  5. dependencies {
  6. library("com.linecorp.armeria:armeria:1.3.0")
  7. testImplementation(project(":instrumentation:armeria:armeria-1.3:testing"))
  8. }
  9. tasks {
  10. withType<Test>().configureEach {
  11. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  12. }
  13. }