24 lines
559 B
Plaintext
24 lines
559 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"))
|
|
implementation(project(":api:incubator"))
|
|
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
|
|
testImplementation(project(":sdk:testing"))
|
|
|
|
testImplementation("org.awaitility:awaitility")
|
|
testImplementation("com.google.guava:guava")
|
|
}
|