opentelemetry-java-instrume.../instrumentation/twilio-6.6/twilio-6.6.gradle

27 lines
791 B
Groovy

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)
}
}
apply from: "${rootDir}/gradle/java.gradle"
apply plugin: 'org.unbroken-dome.test-sets'
testSets {
latestDepTest
}
dependencies {
compileOnly group: 'com.twilio.sdk', name: 'twilio', version: '6.6.9'
testCompile group: 'com.twilio.sdk', name: 'twilio', version: '6.6.9'
testCompile project(':instrumentation:apache-httpclient-4.0')
testCompile project(':instrumentation:java-concurrent')
testCompile group: 'nl.jqno.equalsverifier', name: 'equalsverifier', version: '2.5.2' // Last version to support Java7
latestDepTestCompile group: 'com.twilio.sdk', name: 'twilio', version: '+'
}