build.gradle 477 B

1234567891011121314151617
  1. plugins {
  2. id("otel.library-instrumentation")
  3. id("net.ltgt.errorprone")
  4. }
  5. //Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
  6. def jettyVers_base9 = '9.2.0.v20140526'
  7. dependencies {
  8. library "org.eclipse.jetty:jetty-client:${jettyVers_base9}"
  9. latestDepTestLibrary "org.eclipse.jetty:jetty-client:9.+"
  10. testImplementation project(':instrumentation:jetty-httpclient::jetty-httpclient-9.2:testing')
  11. implementation "org.slf4j:slf4j-api"
  12. }