build.gradle.kts 630 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.eclipse.jetty")
  7. module.set("jetty-client")
  8. versions.set("[9.2,9.4.+)")
  9. }
  10. }
  11. //Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
  12. val jettyVers_base9 = "9.2.0.v20140526"
  13. dependencies {
  14. implementation(project(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:library"))
  15. library("org.eclipse.jetty:jetty-client:${jettyVers_base9}")
  16. latestDepTestLibrary("org.eclipse.jetty:jetty-client:9.+")
  17. testImplementation(project(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:testing"))
  18. }