22 lines
538 B
Groovy
22 lines
538 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.dubbo"
|
|
module = "dubbo"
|
|
versions = "[2.7.0,3.0.0)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:apache-dubbo-2.7:library')
|
|
|
|
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.+"
|
|
}
|