-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
95 lines (75 loc) · 4.18 KB
/
build.gradle.kts
File metadata and controls
95 lines (75 loc) · 4.18 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
plugins {
id("ai.java-conventions")
id("ai.sdk-version-file")
}
dependencies {
compileOnly("com.google.auto.service:auto-service")
annotationProcessor("com.google.auto.service:auto-service")
compileOnly("com.google.auto.value:auto-value-annotations")
annotationProcessor("com.google.auto.value:auto-value")
implementation("io.opentelemetry.contrib:opentelemetry-jfr-connection")
implementation("com.azure:azure-storage-blob")
implementation(project(":agent:agent-profiler:agent-alerting-api"))
implementation(project(":agent:agent-profiler:agent-alerting"))
implementation(project(":agent:agent-gc-monitor:gc-monitor-api"))
implementation(project(":agent:agent-gc-monitor:gc-monitor-core"))
implementation(project(":agent:agent-profiler:agent-diagnostics-api"))
implementation(project(":agent:agent-profiler:agent-diagnostics"))
implementation(project(":etw:java"))
implementation("com.azure:azure-monitor-opentelemetry-autoconfigure:1.4.0")
compileOnly("io.opentelemetry.javaagent:opentelemetry-javaagent-bootstrap")
compileOnly("io.opentelemetry.javaagent:opentelemetry-javaagent-tooling")
compileOnly("io.opentelemetry.javaagent:opentelemetry-javaagent-tooling-java9")
compileOnly("io.opentelemetry.javaagent.instrumentation:opentelemetry-javaagent-servlet-common-bootstrap")
testImplementation("io.opentelemetry.javaagent:opentelemetry-javaagent-tooling")
compileOnly("io.opentelemetry.javaagent:opentelemetry-javaagent-extension-api")
implementation("commons-codec:commons-codec")
implementation("org.apache.commons:commons-text")
// TODO (trask) this is probably still needed for above apache commons projects
implementation("org.slf4j:jcl-over-slf4j")
implementation("ch.qos.logback:logback-classic")
implementation("ch.qos.logback.contrib:logback-json-classic")
implementation("com.azure:azure-core")
implementation("com.azure:azure-identity") {
exclude("org.ow2.asm", "asm")
}
compileOnly("io.opentelemetry:opentelemetry-api-incubator")
compileOnly("io.opentelemetry:opentelemetry-sdk-extension-autoconfigure")
compileOnly("io.opentelemetry:opentelemetry-extension-trace-propagators")
implementation("com.github.oshi:oshi-core:6.11.1") {
exclude("org.slf4j", "slf4j-api")
}
compileOnly("org.slf4j:slf4j-api")
compileOnly("io.opentelemetry:opentelemetry-sdk")
compileOnly("io.opentelemetry:opentelemetry-sdk-metrics")
compileOnly("io.opentelemetry:opentelemetry-sdk-logs")
testImplementation("io.opentelemetry:opentelemetry-sdk")
testImplementation("io.opentelemetry:opentelemetry-sdk-metrics")
testImplementation("io.opentelemetry:opentelemetry-sdk-logs")
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
compileOnly(project(":agent:agent-bootstrap"))
compileOnly("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api")
compileOnly("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator")
compileOnly("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations-support")
compileOnly("io.opentelemetry.semconv:opentelemetry-semconv")
compileOnly("io.opentelemetry.semconv:opentelemetry-semconv-incubating")
compileOnly("com.google.auto.value:auto-value-annotations")
annotationProcessor("com.google.auto.value:auto-value")
testImplementation(project(":agent:agent-bootstrap"))
testImplementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api")
testImplementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator")
testImplementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations-support")
testImplementation("io.opentelemetry.semconv:opentelemetry-semconv")
testImplementation("io.opentelemetry.semconv:opentelemetry-semconv-incubating")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("com.azure:azure-core-test")
testImplementation("org.assertj:assertj-core")
testImplementation("org.awaitility:awaitility")
testImplementation("org.mockito:mockito-core")
testCompileOnly("com.google.code.findbugs:jsr305")
}
configurations {
"implementation" {
exclude(group = "net.bytebuddy", module = "byte-buddy") // we use byte-buddy-dep
}
}