opentelemetry-java-instrume.../instrumentation/apache-httpclient/apache-httpclient-4.0/javaagent/apache-httpclient-4.0-javaa...

27 lines
570 B
Groovy

apply from: "$rootDir/gradle/instrumentation.gradle"
muzzle {
fail {
group = "commons-httpclient"
module = "commons-httpclient"
versions = "[,4.0)"
}
pass {
group = "org.apache.httpcomponents"
module = "httpclient"
versions = "[4.0,)"
assertInverse = true
}
pass {
// We want to support the dropwizard clients too.
group = 'io.dropwizard'
module = 'dropwizard-client'
versions = "(,)"
assertInverse = true
}
}
dependencies {
library group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.0'
}