27 lines
		
	
	
		
			658 B
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			658 B
		
	
	
	
		
			Groovy
		
	
	
	
apply from: "${rootDir}/gradle/instrumentation.gradle"
 | 
						|
apply plugin: 'org.unbroken-dome.test-sets'
 | 
						|
 | 
						|
muzzle {
 | 
						|
  pass {
 | 
						|
    group = "com.google.http-client"
 | 
						|
    module = "google-http-client"
 | 
						|
 | 
						|
    // 1.19.0 is the first release.  The versions before are betas and RCs
 | 
						|
    versions = "[1.19.0,)"
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
testSets {
 | 
						|
  latestDepTest {
 | 
						|
    dirName = 'test'
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
  compileOnly group: 'com.google.http-client', name: 'google-http-client', version: '1.19.0'
 | 
						|
 | 
						|
  testCompile group: 'com.google.http-client', name: 'google-http-client', version: '1.19.0'
 | 
						|
 | 
						|
  latestDepTestCompile group: 'com.google.http-client', name: 'google-http-client', version: '+'
 | 
						|
}
 |