File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
samples/micrometer-samples-core Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ def VERSIONS = [
32
32
' io.grpc:grpc-api:latest.release' ,
33
33
' io.grpc:grpc-core:latest.release' ,
34
34
' io.grpc:grpc-services:latest.release' ,
35
+ ' io.grpc:grpc-inprocess:latest.release' ,
35
36
' io.grpc:grpc-stubs:latest.release' ,
36
37
' io.grpc:grpc-alts:latest.release' ,
37
38
' io.grpc:grpc-testing-proto:latest.release' ,
Original file line number Diff line number Diff line change @@ -198,8 +198,9 @@ dependencies {
198
198
}
199
199
testImplementation(" org.apache.maven.resolver:maven-resolver-connector-basic:latest.release" )
200
200
// gRPC
201
- testImplementation(" io.grpc:grpc-core" )
202
- testImplementation(" io.grpc:grpc-testing-proto" )
201
+ testImplementation ' io.grpc:grpc-core'
202
+ testImplementation ' io.grpc:grpc-inprocess'
203
+ testImplementation ' io.grpc:grpc-testing-proto'
203
204
}
204
205
205
206
task shenandoahTest (type : Test ) {
Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ dependencies {
19
19
implementation ' io.projectreactor.netty:reactor-netty-http'
20
20
implementation ' org.apache.kafka:kafka-clients'
21
21
implementation ' com.github.charithe:kafka-junit'
22
- implementation (' io.grpc:grpc-services' ) {
23
- exclude module : ' io.grpc:grpc-netty-shaded'
24
- }
22
+ implementation ' io.grpc:grpc-services'
23
+ implementation ' io.grpc:grpc-inprocess'
25
24
26
25
}
27
26
28
27
configurations. all {
29
28
// see: https://github.com/micrometer-metrics/micrometer/issues/3954
30
29
exclude group : ' com.google.guava' , module : ' listenablefuture'
30
+ exclude group : ' io.grpc' , module : ' grpc-netty-shaded'
31
31
}
You can’t perform that action at this time.
0 commit comments