plugins { id("otel.library-instrumentation") } dependencies { library("com.graphql-java:graphql-java:20.0") implementation(project(":instrumentation:graphql-java:graphql-java-common:library")) testImplementation(project(":instrumentation:graphql-java:graphql-java-common:testing")) } if (findProperty("testLatestDeps") as Boolean) { otelJava { minJavaVersionSupported.set(JavaVersion.VERSION_11) } } tasks.withType().configureEach { jvmArgs("-Dotel.instrumentation.graphql.data-fetcher.enabled=true") }