build.gradle.kts 544 B

1234567891011121314151617181920212223
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("io.vertx")
  7. module.set("vertx-core")
  8. versions.set("[4.0.0,)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. dependencies {
  13. library("io.vertx:vertx-core:4.0.0")
  14. // vertx-codegen dependency is needed for Xlint's annotation checking
  15. library("io.vertx:vertx-codegen:4.0.0")
  16. implementation(project(":instrumentation:vertx:vertx-http-client:vertx-http-client-common:javaagent"))
  17. testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
  18. }