hystrix-1.4.gradle 868 B

12345678910111213141516171819202122232425262728293031
  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. compile 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. testCompile project(':instrumentation:trace-annotation')
  20. testCompile group: 'io.reactivex', name: 'rxjava', version: '1.0.7'
  21. testCompile group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.4.0'
  22. latestDepTestCompile group: 'io.reactivex', name: 'rxjava', version: '+'
  23. latestDepTestCompile group: 'com.netflix.hystrix', name: 'hystrix-core', version: '+'
  24. }