build.gradle.kts 667 B

12345678910111213141516171819202122232425262728
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("com.linecorp.armeria")
  7. module.set("armeria")
  8. versions.set("[1.3.0,)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. dependencies {
  13. implementation(project(":instrumentation:armeria-1.3:library"))
  14. testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
  15. library("com.linecorp.armeria:armeria:1.3.0")
  16. testLibrary("com.linecorp.armeria:armeria-junit5:1.3.0")
  17. testImplementation(project(":instrumentation:armeria-1.3:testing"))
  18. }
  19. tasks {
  20. withType<Test>().configureEach {
  21. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  22. }
  23. }