all: update google auth libraries (#6652)

This commit is contained in:
Elliotte Rusty Harold 2020-01-30 15:59:55 -05:00 committed by GitHub
parent 084f5bc4bd
commit b3aea8193f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View File

@ -47,7 +47,7 @@ subprojects {
nettyVersion = '4.1.42.Final' nettyVersion = '4.1.42.Final'
guavaVersion = '28.1-android' guavaVersion = '28.1-android'
googleauthVersion = '0.19.0' googleauthVersion = '0.20.0'
protobufVersion = '3.11.0' protobufVersion = '3.11.0'
protocVersion = protobufVersion protocVersion = protobufVersion
opencensusVersion = '0.24.0' opencensusVersion = '0.24.0'

View File

@ -11,6 +11,7 @@ repositories {
maven { // The google mirror is less flaky than mavenCentral() maven { // The google mirror is less flaky than mavenCentral()
url "https://maven-central.storage-download.googleapis.com/repos/central/data/" url "https://maven-central.storage-download.googleapis.com/repos/central/data/"
} }
mavenCentral()
mavenLocal() mavenLocal()
} }

View File

@ -13,8 +13,8 @@ load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")
IO_GRPC_GRPC_JAVA_ARTIFACTS = [ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
"com.google.android:annotations:4.1.1.4", "com.google.android:annotations:4.1.1.4",
"com.google.api.grpc:proto-google-common-protos:1.17.0", "com.google.api.grpc:proto-google-common-protos:1.17.0",
"com.google.auth:google-auth-library-credentials:0.19.0", "com.google.auth:google-auth-library-credentials:0.20.0",
"com.google.auth:google-auth-library-oauth2-http:0.19.0", "com.google.auth:google-auth-library-oauth2-http:0.20.0",
"com.google.code.findbugs:jsr305:3.0.2", "com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:jar:2.8.6", "com.google.code.gson:gson:jar:2.8.6",
"com.google.errorprone:error_prone_annotations:2.3.4", "com.google.errorprone:error_prone_annotations:2.3.4",
@ -191,18 +191,18 @@ def com_google_api_grpc_proto_google_common_protos():
def com_google_auth_google_auth_library_credentials(): def com_google_auth_google_auth_library_credentials():
jvm_maven_import_external( jvm_maven_import_external(
name = "com_google_auth_google_auth_library_credentials", name = "com_google_auth_google_auth_library_credentials",
artifact = "com.google.auth:google-auth-library-credentials:0.19.0", artifact = "com.google.auth:google-auth-library-credentials:0.20.0",
server_urls = ["https://repo.maven.apache.org/maven2/"], server_urls = ["https://repo.maven.apache.org/maven2/"],
artifact_sha256 = "3f81ea05795abc40daf36f4c427487a738489f7cc0f515b7930f838ed301165a", artifact_sha256 = "8a415273a5dae5c8f9080134e53b9592dc171ca5d13127488c910177c5903bd6",
licenses = ["notice"], # BSD 3-clause licenses = ["notice"], # BSD 3-clause
) )
def com_google_auth_google_auth_library_oauth2_http(): def com_google_auth_google_auth_library_oauth2_http():
jvm_maven_import_external( jvm_maven_import_external(
name = "com_google_auth_google_auth_library_oauth2_http", name = "com_google_auth_google_auth_library_oauth2_http",
artifact = "com.google.auth:google-auth-library-oauth2-http:0.19.0", artifact = "com.google.auth:google-auth-library-oauth2-http:0.20.0",
server_urls = ["https://repo.maven.apache.org/maven2/"], server_urls = ["https://repo.maven.apache.org/maven2/"],
artifact_sha256 = "51992d58ec0f903fb521412f677bd09d83895609a0198d4a9ae65a3d88e2aa4a", artifact_sha256 = "43e96e8c07285c2887042eda4e35ca96522ef361f6c1843f469039d9ccdc8f8a",
licenses = ["notice"], # BSD 3-clause licenses = ["notice"], # BSD 3-clause
) )