26 lines
574 B
Groovy
26 lines
574 B
Groovy
muzzle {
|
|
pass {
|
|
group = "commons-httpclient"
|
|
module = "commons-httpclient"
|
|
versions = "[3.0,4.0)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'commons-httpclient', name: 'commons-httpclient', version: '3.0'
|
|
|
|
testCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '3.0'
|
|
|
|
latestDepTestCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '+'
|
|
}
|