17 lines
470 B
Groovy
17 lines
470 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.httpcomponents"
|
|
module = "httpasyncclient"
|
|
// 4.0 and 4.0.1 don't copy over the traceparent (etc) http headers on redirect
|
|
versions = "[4.1,)"
|
|
// TODO implement a muzzle check so that 4.0.x (at least 4.0 and 4.0.1) do not get applied
|
|
// and then bring back assertInverse
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library "org.apache.httpcomponents:httpasyncclient:4.1"
|
|
}
|