forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
30 lines (22 loc) · 709 Bytes
/
build.gradle.kts
File metadata and controls
30 lines (22 loc) · 709 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
28
29
30
plugins {
id("otel.java-conventions")
id("otel.publish-conventions")
id("otel.jmh-conventions")
id("otel.animalsniffer-conventions")
}
description = "OpenTelemetry SDK"
otelJava.moduleName.set("io.opentelemetry.sdk")
base.archivesName.set("opentelemetry-sdk")
dependencies {
api(project(":api:all"))
api(project(":sdk:common"))
api(project(":sdk:trace"))
api(project(":sdk:metrics"))
api(project(":sdk:logs"))
compileOnly(project(":api:incubator"))
annotationProcessor("com.google.auto.value:auto-value")
testAnnotationProcessor("com.google.auto.value:auto-value")
testImplementation(project(":sdk:testing"))
jmh(project(":sdk:testing"))
jmh(project(":api:incubator"))
}