build.gradle 760 B

12345678910111213141516171819202122232425262728
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group = "org.eclipse.jetty"
  7. module = 'jetty-client'
  8. versions = "[9.2,9.4.+)"
  9. }
  10. }
  11. //Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
  12. def 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. testImplementation("org.eclipse.jetty:jetty-server:${jettyVers_base9}") {
  19. exclude group: 'org.eclipse.jetty', module: 'jetty-client'
  20. }
  21. }