19 lines
362 B
Groovy
19 lines
362 B
Groovy
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.httpcomponents"
|
|
module = "httpasyncclient"
|
|
versions = "[4.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0'
|
|
}
|