Format gradle files (#1070)
This commit is contained in:
parent
5dbb16d71a
commit
269b3575ef
|
@ -4,7 +4,8 @@ muzzle {
|
||||||
pass {
|
pass {
|
||||||
group = 'com.twilio.sdk'
|
group = 'com.twilio.sdk'
|
||||||
module = 'twilio'
|
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'
|
library group: 'com.twilio.sdk', name: 'twilio', version: '6.6.9'
|
||||||
|
|
||||||
testImplementation project(':instrumentation:apache-httpclient:apache-httpclient-4.0')
|
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'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue