17 lines
393 B
Groovy
17 lines
393 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "commons-httpclient"
|
|
module = "commons-httpclient"
|
|
versions = "[2.0,4.0)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'commons-httpclient', name: 'commons-httpclient', version: '2.0'
|
|
|
|
latestDepTestLibrary group: 'commons-httpclient', name: 'commons-httpclient', version: '3.+'
|
|
}
|