mirror of https://github.com/grpc/grpc-java.git
all: update google auth libraries (#6652)
This commit is contained in:
parent
084f5bc4bd
commit
b3aea8193f
|
|
@ -47,7 +47,7 @@ subprojects {
|
|||
|
||||
nettyVersion = '4.1.42.Final'
|
||||
guavaVersion = '28.1-android'
|
||||
googleauthVersion = '0.19.0'
|
||||
googleauthVersion = '0.20.0'
|
||||
protobufVersion = '3.11.0'
|
||||
protocVersion = protobufVersion
|
||||
opencensusVersion = '0.24.0'
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ repositories {
|
|||
maven { // The google mirror is less flaky than mavenCentral()
|
||||
url "https://maven-central.storage-download.googleapis.com/repos/central/data/"
|
||||
}
|
||||
mavenCentral()
|
||||
mavenLocal()
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")
|
|||
IO_GRPC_GRPC_JAVA_ARTIFACTS = [
|
||||
"com.google.android:annotations:4.1.1.4",
|
||||
"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-oauth2-http:0.19.0",
|
||||
"com.google.auth:google-auth-library-credentials:0.20.0",
|
||||
"com.google.auth:google-auth-library-oauth2-http:0.20.0",
|
||||
"com.google.code.findbugs:jsr305:3.0.2",
|
||||
"com.google.code.gson:gson:jar:2.8.6",
|
||||
"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():
|
||||
jvm_maven_import_external(
|
||||
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/"],
|
||||
artifact_sha256 = "3f81ea05795abc40daf36f4c427487a738489f7cc0f515b7930f838ed301165a",
|
||||
artifact_sha256 = "8a415273a5dae5c8f9080134e53b9592dc171ca5d13127488c910177c5903bd6",
|
||||
licenses = ["notice"], # BSD 3-clause
|
||||
)
|
||||
|
||||
def com_google_auth_google_auth_library_oauth2_http():
|
||||
jvm_maven_import_external(
|
||||
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/"],
|
||||
artifact_sha256 = "51992d58ec0f903fb521412f677bd09d83895609a0198d4a9ae65a3d88e2aa4a",
|
||||
artifact_sha256 = "43e96e8c07285c2887042eda4e35ca96522ef361f6c1843f469039d9ccdc8f8a",
|
||||
licenses = ["notice"], # BSD 3-clause
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue