hystrix-1.4.gradle 841 B

1234567891011121314151617181920212223242526272829
  1. apply from: "$rootDir/gradle/instrumentation.gradle"
  2. apply plugin: 'org.unbroken-dome.test-sets'
  3. muzzle {
  4. pass {
  5. group = "com.netflix.hystrix"
  6. module = 'hystrix-core'
  7. versions = "[1.4.0,)"
  8. }
  9. }
  10. testSets {
  11. latestDepTest {
  12. dirName = 'test'
  13. }
  14. }
  15. dependencies {
  16. implementation project(':instrumentation:rxjava-1.0')
  17. compileOnly group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
  18. compileOnly group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
  19. testImplementation group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
  20. testImplementation group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
  21. latestDepTestImplementation group: 'io.reactivex', name: 'rxjava', version: '+'
  22. latestDepTestImplementation group: 'com.netflix.hystrix', name: 'hystrix-core', version: '+'
  23. }