37 lines
805 B
Groovy
37 lines
805 B
Groovy
muzzle {
|
|
pass {
|
|
group = "com.squareup.okhttp3"
|
|
module = "okhttp"
|
|
versions = "[3.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.0.0'
|
|
|
|
compile project(':dd-java-agent:agent-tooling')
|
|
|
|
compile deps.bytebuddy
|
|
compile deps.opentracing
|
|
annotationProcessor deps.autoservice
|
|
implementation deps.autoservice
|
|
|
|
testCompile(project(':dd-java-agent:testing')) {
|
|
exclude module: 'okhttp'
|
|
}
|
|
testCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.0.0'
|
|
|
|
latestDepTestCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '[3.11.0,)'
|
|
}
|