google-http-client-1.19.gradle 658 B

1234567891011121314151617181920212223242526
  1. apply from: "${rootDir}/gradle/instrumentation.gradle"
  2. apply plugin: 'org.unbroken-dome.test-sets'
  3. muzzle {
  4. pass {
  5. group = "com.google.http-client"
  6. module = "google-http-client"
  7. // 1.19.0 is the first release. The versions before are betas and RCs
  8. versions = "[1.19.0,)"
  9. }
  10. }
  11. testSets {
  12. latestDepTest {
  13. dirName = 'test'
  14. }
  15. }
  16. dependencies {
  17. compileOnly group: 'com.google.http-client', name: 'google-http-client', version: '1.19.0'
  18. testCompile group: 'com.google.http-client', name: 'google-http-client', version: '1.19.0'
  19. latestDepTestCompile group: 'com.google.http-client', name: 'google-http-client', version: '+'
  20. }