-
Notifications
You must be signed in to change notification settings - Fork 882
/
Copy pathbuild.gradle.kts
42 lines (34 loc) · 952 Bytes
/
build.gradle.kts
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
31
32
33
34
35
36
37
38
39
40
41
42
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)
}
}