forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (29 loc) · 933 Bytes
/
build.gradle
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
dependencies {
implementation project(':grpc-protocol')
implementation project(':protobuf')
api libs.protobuf.java
implementation libs.protobuf.java.util
// gRPC
api libs.grpc.core
api libs.grpc.protobuf
api libs.grpc.services
api libs.grpc.stub
// gRPC-Kotlin
optionalImplementation libs.grpc.kotlin
optionalImplementation libs.kotlin.coroutines.core
api libs.protobuf.jackson
testImplementation(libs.gax.grpc) {
exclude group: 'com.google.protobuf', module: 'protobuf-java'
}
testImplementation project(':prometheus1')
testImplementation libs.grpc.okhttp
testImplementation libs.grpc.testing
testImplementation libs.micrometer.prometheus
testImplementation libs.reactor.test
testImplementation libs.reactivestreams.tck
}
tasks {
javadoc {
exclude '**/com/linecorp/armeria/common/grpc/InternalExceptionMessages**'
}
}