42 lines
1021 B
Groovy
42 lines
1021 B
Groovy
muzzle {
|
|
pass {
|
|
group = "com.netflix.hystrix"
|
|
module = 'hystrix-core'
|
|
versions = "[1.4.0,)"
|
|
}
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
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
|
|
annotationProcessor deps.autoservice
|
|
implementation 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'
|
|
}
|
|
|
|
configurations.latestDepTestCompile {
|
|
resolutionStrategy {
|
|
force group: 'com.netflix.hystrix', name: 'hystrix-core', version: '+'
|
|
}
|
|
}
|