Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update auth libraries #6652

Merged
merged 2 commits into from Jan 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -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'
Expand Down
1 change: 1 addition & 0 deletions examples/example-alts/build.gradle
Expand Up @@ -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()
}

Expand Down
12 changes: 6 additions & 6 deletions repositories.bzl
Expand Up @@ -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",
Expand Down Expand Up @@ -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
)

Expand Down