From ae76de434e37ce1bd18b6cf0d6caf1564d98182d Mon Sep 17 00:00:00 2001 From: Chengyuan Zhang Date: Wed, 15 Jan 2020 12:33:57 -0800 Subject: [PATCH] alts: do not exclude opencensus-api from google-oauth2's transitive dependencies (#6607) --- alts/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/alts/build.gradle b/alts/build.gradle index 9d8741d5236..b5342770288 100644 --- a/alts/build.gradle +++ b/alts/build.gradle @@ -24,7 +24,8 @@ dependencies { compile (libraries.google_auth_oauth2_http) { // prefer our own versions instead of google-auth-oauth2-http's dependency exclude group: 'com.google.guava', module: 'guava' - exclude group: 'io.opencensus', module: 'opencensus-api' + // we'll always be more up-to-date + exclude group: 'io.grpc', module: 'grpc-context' } compileOnly libraries.javax_annotation runtime project(':grpc-grpclb')