25 lines
787 B
Groovy
25 lines
787 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
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)
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
latestDepTest
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'com.twilio.sdk', name: 'twilio', version: '6.6.9'
|
|
|
|
testImplementation 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
|
|
|
|
latestDepTestImplementation group: 'com.twilio.sdk', name: 'twilio', version: '+'
|
|
}
|