30 lines
670 B
Groovy
30 lines
670 B
Groovy
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.httpcomponents"
|
|
module = "httpasyncclient"
|
|
versions = "[4.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0'
|
|
|
|
testImplementation group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0'
|
|
|
|
latestDepTestImplementation group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '+'
|
|
}
|