21 lines
555 B
Groovy
21 lines
555 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.rocketmq"
|
|
module = 'rocketmq-client'
|
|
versions = "[4.8.0,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'org.apache.rocketmq', name: 'rocketmq-client', version: '4.8.0'
|
|
implementation project(':instrumentation:rocketmq-client-4.8:library')
|
|
testImplementation project(':instrumentation:rocketmq-client-4.8:testing')
|
|
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
jvmArgs "-Dotel.instrumentation.rocketmq-client.experimental-span-attributes=true"
|
|
} |