-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
39 lines (33 loc) · 1.13 KB
/
build.gradle.kts
File metadata and controls
39 lines (33 loc) · 1.13 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
plugins {
`java-library`
jacoco
id("org.hypertrace.publish-plugin")
id("org.hypertrace.jacoco-report-plugin")
}
dependencies {
api(platform("io.grpc:grpc-bom:1.68.3"))
api("io.grpc:grpc-context")
api("io.grpc:grpc-api")
api("io.grpc:grpc-inprocess")
api(platform("io.netty:netty-bom:4.1.118.Final"))
constraints {
api("com.google.protobuf:protobuf-java:3.25.5") {
because("https://nvd.nist.gov/vuln/detail/CVE-2024-7254")
}
}
implementation(project(":grpc-context-utils"))
implementation("org.slf4j:slf4j-api:1.7.36")
implementation("io.grpc:grpc-core")
implementation("io.github.resilience4j:resilience4j-circuitbreaker:1.7.1")
implementation("com.typesafe:config:1.4.2")
implementation("com.google.inject:guice:7.0.0")
implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.87")
annotationProcessor("org.projectlombok:lombok:1.18.24")
compileOnly("org.projectlombok:lombok:1.18.24")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
testImplementation("org.mockito:mockito-core:5.8.0")
testRuntimeOnly("io.grpc:grpc-netty")
}
tasks.test {
useJUnitPlatform()
}