build.gradle.kts 309 B

123456789101112
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. dependencies {
  5. implementation(project(":testing-common"))
  6. implementation("org.testcontainers:kafka")
  7. compileOnly("io.vertx:vertx-kafka-client:3.6.0")
  8. // vertx-codegen is needed for Xlint's annotation checking
  9. compileOnly("io.vertx:vertx-codegen:3.6.0")
  10. }