29 lines
792 B
Groovy
29 lines
792 B
Groovy
apply plugin: 'version-scan'
|
|
|
|
versionScan {
|
|
group = "com.netflix.hystrix"
|
|
module = 'hystrix-core'
|
|
versions = "[1.4.0,)"
|
|
verifyPresent = [
|
|
"com.netflix.hystrix.AbstractCommand": null,
|
|
]
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
// compileOnly group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.5.12'
|
|
|
|
compile project(':dd-trace-ot')
|
|
compile project(':dd-java-agent:agent-tooling')
|
|
|
|
compile deps.bytebuddy
|
|
compile deps.opentracing
|
|
compile deps.autoservice
|
|
|
|
testCompile project(':dd-java-agent:testing')
|
|
testCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
|
testCompile project(':dd-java-agent:instrumentation:trace-annotation')
|
|
testCompile group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
|
|
}
|