opentelemetry-java-instrume.../instrumentation/graphql-java/graphql-java-12.0/javaagent/build.gradle.kts

27 lines
747 B
Plaintext

plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {
group.set("com.graphql-java")
module.set("graphql-java")
versions.set("[12,20)")
skip("230521-nf-execution")
assertInverse.set(true)
}
}
dependencies {
implementation(project(":instrumentation:graphql-java:graphql-java-12.0:library"))
implementation(project(":instrumentation:graphql-java:graphql-java-common:library"))
library("com.graphql-java:graphql-java:12.0")
testInstrumentation(project(":instrumentation:graphql-java:graphql-java-20.0:javaagent"))
testImplementation(project(":instrumentation:graphql-java:graphql-java-common:testing"))
latestDepTestLibrary("com.graphql-java:graphql-java:19.+") // see graphql-java-20.0 module
}