27 lines
644 B
Groovy
27 lines
644 B
Groovy
apply from: "${rootDir}/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "commons-httpclient"
|
|
module = "commons-httpclient"
|
|
versions = "[2.0,]"
|
|
skipVersions += "3.1-jenkins-1" // odd version in jcenter
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'commons-httpclient', name: 'commons-httpclient', version: '2.0'
|
|
|
|
testCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '2.0'
|
|
|
|
latestDepTestCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '+'
|
|
}
|