Format gradle files (#1070)
This commit is contained in:
parent
5dbb16d71a
commit
269b3575ef
|
@ -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 {
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue