43 lines
952 B
Plaintext
43 lines
952 B
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
id("otel.publish-conventions")
|
|
|
|
id("otel.jmh-conventions")
|
|
id("otel.animalsniffer-conventions")
|
|
}
|
|
|
|
description = "OpenTelemetry Log SDK"
|
|
otelJava.moduleName.set("io.opentelemetry.sdk.logs")
|
|
|
|
dependencies {
|
|
api(project(":api:all"))
|
|
api(project(":sdk:common"))
|
|
compileOnly(project(":api:incubator"))
|
|
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
|
|
testImplementation(project(":sdk:testing"))
|
|
|
|
testImplementation("org.awaitility:awaitility")
|
|
testImplementation("com.google.guava:guava")
|
|
}
|
|
|
|
testing {
|
|
suites {
|
|
register<JvmTestSuite>("testIncubating") {
|
|
dependencies {
|
|
implementation(project(":sdk:testing"))
|
|
implementation(project(":api:incubator"))
|
|
implementation("io.opentelemetry.semconv:opentelemetry-semconv-incubating")
|
|
implementation("com.google.guava:guava")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
check {
|
|
dependsOn(testing.suites)
|
|
}
|
|
}
|