26 lines
846 B
Groovy
26 lines
846 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.projectreactor"
|
|
module = "reactor-core"
|
|
versions = "[3.1.0.RELEASE,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:reactor-3.1:library')
|
|
|
|
testLibrary "io.projectreactor:reactor-core:3.1.0.RELEASE"
|
|
testLibrary "io.projectreactor:reactor-test:3.1.0.RELEASE"
|
|
|
|
testImplementation project(':instrumentation:reactor-3.1:testing')
|
|
testImplementation "io.opentelemetry:opentelemetry-extension-annotations"
|
|
|
|
latestDepTestLibrary "io.projectreactor:reactor-core:3.+"
|
|
latestDepTestLibrary "io.projectreactor:reactor-test:3.+"
|
|
// Looks like later versions on reactor need this dependency for some reason even though it is marked as optional.
|
|
latestDepTestLibrary "io.micrometer:micrometer-core:1.+"
|
|
}
|