forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
27 lines (19 loc) · 852 Bytes
/
build.gradle.kts
File metadata and controls
27 lines (19 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
plugins {
id("otel.java-conventions")
id("otel.publish-conventions")
id("otel.jmh-conventions")
id("otel.animalsniffer-conventions")
}
description = "OpenTelemetry API Incubator"
otelJava.moduleName.set("io.opentelemetry.api.incubator")
dependencies {
api(project(":api:all"))
annotationProcessor("com.google.auto.value:auto-value")
// To use parsed config file as input for YamlStructuredConfigPropertiesTest
testImplementation(project(":sdk-extensions:incubator"))
// TODO (jack-berg): Why is this dependency not brought in as transitive dependency of :sdk-extensions:incubator?
testImplementation("com.fasterxml.jackson.core:jackson-databind")
testImplementation(project(":sdk:testing"))
testImplementation("io.opentelemetry.semconv:opentelemetry-semconv-incubating")
testImplementation("com.google.guava:guava")
}