12345678910111213141516171819202122232425262728293031 |
- 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:trace-annotation')
- 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: '+'
- }
|