Format gradle files (#1070)

This commit is contained in:
Trask Stalnaker 2020-08-19 19:05:45 -07:00 committed by GitHub
parent 5dbb16d71a
commit 269b3575ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 31 additions and 29 deletions

View File

@ -40,7 +40,7 @@ configurations {
canBeResolved = false
canBeConsumed = false
}
[library, testLibrary].each {configuration ->
[library, testLibrary].each { configuration ->
// We use whenObjectAdded and copy into the real configurations instead of extension to allow
// mutating the version for latest dep tests.
configuration.dependencies.whenObjectAdded {

View File

@ -4,7 +4,8 @@ muzzle {
pass {
group = 'com.twilio.sdk'
module = 'twilio'
versions = "[6.6.9,)" // this is first version in maven central (there's a 0.0.1 but that is really 7.14.4)
// this is first version in maven central (there's a 0.0.1 but that is really 7.14.4)
versions = "[6.6.9,)"
}
}
@ -12,5 +13,6 @@ dependencies {
library group: 'com.twilio.sdk', name: 'twilio', version: '6.6.9'
testImplementation project(':instrumentation:apache-httpclient:apache-httpclient-4.0')
testImplementation group: 'nl.jqno.equalsverifier', name: 'equalsverifier', version: '2.5.2' // Last version to support Java7
// Last version to support Java7
testImplementation group: 'nl.jqno.equalsverifier', name: 'equalsverifier', version: '2.5.2'
}