1234567891011121314151617181920212223242526272829 |
- 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 {
- implementation 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'
- testImplementation group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
- testImplementation group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
- latestDepTestImplementation group: 'io.reactivex', name: 'rxjava', version: '+'
- latestDepTestImplementation group: 'com.netflix.hystrix', name: 'hystrix-core', version: '+'
- }
|