File tree 5 files changed +6
-1
lines changed
5 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ dependencies {
13
13
api project(' :grpc-api' )
14
14
implementation project(' :grpc-auth' ),
15
15
project(' :grpc-core' ),
16
+ project(" :grpc-context" ), // Override google-auth dependency with our newer version
16
17
project(' :grpc-grpclb' ),
17
18
project(' :grpc-protobuf' ),
18
19
project(' :grpc-stub' ),
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ dependencies {
20
20
implementation libraries. guava
21
21
testImplementation project(' :grpc-testing' ),
22
22
project(' :grpc-core' ),
23
+ project(" :grpc-context" ), // Override google-auth dependency with our newer version
23
24
libraries. google. auth. oauth2Http
24
25
signature libraries. signature. java
25
26
signature libraries. signature. android
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ dependencies {
18
18
// force dependent jars to depend on latest grpc-context
19
19
runtimeOnly project(" :grpc-context" )
20
20
implementation libraries. guava,
21
+ project(" :grpc-context" ), // Override opencensus dependency with our newer version
21
22
libraries. opencensus. api,
22
23
libraries. opencensus. contrib. grpc. metrics
23
24
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ dependencies {
34
34
implementation project(' :grpc-protobuf' ),
35
35
project(' :grpc-stub' ),
36
36
project(' :grpc-census' ),
37
+ project(" :grpc-context" ), // Override opencensus dependency with our newer version
37
38
libraries. opencensus. contrib. grpc. metrics
38
39
// Avoid gradle using project dependencies without configuration: shadow
39
40
implementation (libraries. google. cloud. logging) {
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ dependencies {
15
15
implementation project(' :grpc-inprocess' )
16
16
implementation project(' :grpc-core' )
17
17
// Only io.grpc.internal.testing.StatsTestUtils depends on opencensus_api, for internal use.
18
- compileOnly libraries. opencensus. api
18
+ compileOnly libraries. opencensus. api,
19
+ project(" :grpc-context" ) // Override opencensus dependency with our newer version
19
20
runtimeOnly project(" :grpc-api" ) // Pull in newer version than census-api
20
21
21
22
testImplementation libraries. mockito. core
You can’t perform that action at this time.
0 commit comments