24 lines
565 B
Plaintext
24 lines
565 B
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.apache.dubbo")
|
|
module.set("dubbo")
|
|
versions.set("[2.7.0,3.0.0)")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation:apache-dubbo-2.7:library-autoconfigure"))
|
|
|
|
library("org.apache.dubbo:dubbo:2.7.0")
|
|
|
|
testImplementation(project(":instrumentation:apache-dubbo-2.7:testing"))
|
|
|
|
testLibrary("org.apache.dubbo:dubbo-config-api:2.7.0")
|
|
latestDepTestLibrary("org.apache.dubbo:dubbo:2.+")
|
|
latestDepTestLibrary("org.apache.dubbo:dubbo-config-api:2.+")
|
|
}
|