build.gradle.kts 331 B

1234567891011121314
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. // Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
  5. val jettyVers_base9 = "9.2.0.v20140526"
  6. dependencies {
  7. api(project(":testing-common"))
  8. api("org.eclipse.jetty:jetty-client:$jettyVers_base9")
  9. implementation("io.opentelemetry:opentelemetry-api")
  10. }