-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (25 loc) · 964 Bytes
/
build.gradle.kts
File metadata and controls
35 lines (25 loc) · 964 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
31
32
33
34
35
plugins {
id("ai.java-conventions")
}
tasks {
named("spotbugsMain") {
enabled = false
}
}
dependencies {
implementation("com.google.guava:guava")
implementation("org.junit.jupiter:junit-jupiter")
implementation("org.apache.commons:commons-lang3:3.18.0")
implementation("com.google.code.gson:gson")
implementation("org.apache.httpcomponents:httpclient:4.5.14")
implementation("org.eclipse.jetty:jetty-servlet:10.0.25")
implementation("org.mock-server:mockserver-netty:5.15.0:shaded")
implementation("io.opentelemetry.proto:opentelemetry-proto:1.7.0-alpha")
// this is exposed in SmokeTestExtension API
api("org.testcontainers:testcontainers:1.21.3")
implementation("org.awaitility:awaitility:4.3.0")
implementation("ch.qos.logback:logback-classic")
implementation("org.assertj:assertj-core")
implementation("com.azure:azure-json:1.5.0")
implementation("com.azure:azure-monitor-opentelemetry-autoconfigure:1.2.0")
}