18 lines
459 B
Groovy
18 lines
459 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "commons-httpclient"
|
|
module = "commons-httpclient"
|
|
versions = "[2.0,4.0)"
|
|
skipVersions += ["3.1-jenkins-1", "20020423"] // odd versions
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'commons-httpclient', name: 'commons-httpclient', version: '2.0'
|
|
|
|
latestDepTestLibrary group: 'commons-httpclient', name: 'commons-httpclient', version: '3.+'
|
|
}
|