17 lines
438 B
Groovy
17 lines
438 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.projectreactor.netty"
|
|
module = "reactor-netty"
|
|
versions = "[0.9.0.RELEASE,1.0.0)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:netty:netty-4.1:javaagent')
|
|
library "io.projectreactor.netty:reactor-netty:0.9.0.RELEASE"
|
|
|
|
latestDepTestLibrary group: 'io.projectreactor.netty', name: 'reactor-netty', version: '(,1.0.0)'
|
|
}
|