opentelemetry-java-instrume.../instrumentation/hystrix-1.4/hystrix-1.4.gradle

32 lines
861 B
Groovy

apply from: "$rootDir/gradle/instrumentation.gradle"
apply plugin: 'org.unbroken-dome.test-sets'
muzzle {
pass {
group = "com.netflix.hystrix"
module = 'hystrix-core'
versions = "[1.4.0,)"
}
}
testSets {
latestDepTest {
dirName = 'test'
}
}
dependencies {
compile project(':instrumentation:rxjava-1.0')
compileOnly group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
compileOnly group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
testCompile project(':instrumentation:annotations')
testCompile group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
testCompile group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
latestDepTestCompile group: 'io.reactivex', name: 'rxjava', version: '+'
latestDepTestCompile group: 'com.netflix.hystrix', name: 'hystrix-core', version: '+'
}