17 lines
419 B
Plaintext
17 lines
419 B
Plaintext
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)
|
|
}
|
|
}
|