opentelemetry-java-instrume.../dd-java-agent/instrumentation/commons-httpclient-2/commons-httpclient-2.gradle

27 lines
633 B
Groovy

muzzle {
pass {
group = "commons-httpclient"
module = "commons-httpclient"
versions = "[2.0,]"
skipVersions += "3.1-jenkins-1" // odd version in jcenter
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: '2.0'
testCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '2.0'
latestDepTestCompile group: 'commons-httpclient', name: 'commons-httpclient', version: '+'
}