-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
62 lines (56 loc) · 2.67 KB
/
build.gradle.kts
File metadata and controls
62 lines (56 loc) · 2.67 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
`java-platform`
}
val otelInstrumentationVersion = "2.26.1-alpha"
val semconvVersion = "1.40.0"
javaPlatform {
allowDependencies()
}
dependencies {
// boms that are only used by tests should be added in otel.java-conventions.gradle.kts
// under JvmTestSuite so they don't show up as runtime dependencies in license and vulnerability scans
// (the constraints section below doesn't have this issue, and will only show up
// as runtime dependencies if they are actually used as runtime dependencies)
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion}"))
api(platform("com.fasterxml.jackson:jackson-bom:2.21.2"))
api(platform("com.google.protobuf:protobuf-bom:4.34.1"))
api(platform("com.squareup.okhttp3:okhttp-bom:5.3.2"))
constraints {
api("io.opentelemetry.semconv:opentelemetry-semconv:${semconvVersion}")
api("io.opentelemetry.semconv:opentelemetry-semconv-incubating:${semconvVersion}-alpha")
api("com.google.auto.service:auto-service:1.1.1")
api("com.google.auto.service:auto-service-annotations:1.1.1")
api("com.google.auto.value:auto-value:1.11.1")
api("com.google.auto.value:auto-value-annotations:1.11.1")
api("com.google.errorprone:error_prone_annotations:2.48.0")
api("com.google.errorprone:error_prone_core:2.48.0")
api("com.google.errorprone:error_prone_test_helpers:2.48.0")
api("io.github.netmikey.logunit:logunit-jul:2.0.0")
api("io.opentelemetry.proto:opentelemetry-proto:1.10.0-alpha")
api("io.prometheus:simpleclient:0.16.0")
api("io.prometheus:simpleclient_common:0.16.0")
api("io.prometheus:simpleclient_httpserver:0.16.0")
api("org.mockito:mockito-core:4.11.0")
api("org.mockito:mockito-inline:4.11.0")
api("org.mockito:mockito-junit-jupiter:4.11.0")
api("org.slf4j:slf4j-api:2.0.17")
api("org.slf4j:slf4j-simple:2.0.17")
api("org.slf4j:log4j-over-slf4j:2.0.17")
api("org.slf4j:jcl-over-slf4j:2.0.17")
api("org.slf4j:jul-to-slf4j:2.0.17")
api("com.google.code.findbugs:annotations:3.0.1u2")
api("com.google.code.findbugs:jsr305:3.0.2")
api("com.uber.nullaway:nullaway:0.13.1")
api("org.assertj:assertj-core:3.27.7")
api("org.awaitility:awaitility:4.3.0")
api("org.bouncycastle:bcpkix-jdk15on:1.70")
api("org.junit-pioneer:junit-pioneer:1.9.1")
api("org.skyscreamer:jsonassert:1.5.3")
api("org.apache.kafka:kafka-clients:4.2.0")
api("org.testcontainers:testcontainers-kafka:2.0.4")
api("org.jctools:jctools-core:4.0.6")
api("tools.profiler:async-profiler:4.3")
api("com.blogspot.mydailyjava:weak-lock-free:0.18")
api("com.github.f4b6a3:uuid-creator:6.1.1")
}
}