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

WIP on version update for google cloud storage #196

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Update google libraries
Signed-off-by: Craig Perkins <cwperx@amazon.com>
  • Loading branch information
cwperks committed May 16, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit fe2ac3f6f30836624a2a940c82081456a2d9b2d1
27 changes: 10 additions & 17 deletions plugins/repository-gcs/build.gradle
Original file line number Diff line number Diff line change
@@ -48,28 +48,21 @@ opensearchplugin {
}

versions << [
'google_auth': '1.7.0'
'google_auth': '1.23.0'
]

configurations {
all {
resolutionStrategy {
force 'com.google.cloud:google-cloud-storage:2.38.0'
}
}
}

dependencies {
api 'com.google.api:api-common:1.8.1'
api 'com.google.api:gax:2.35.0'
api 'com.google.api:gax-httpjson:2.42.0'
api 'com.google.api:api-common:2.31.0'
api 'com.google.api:gax:2.48.0'
api 'com.google.api:gax-httpjson:2.48.0'

api 'com.google.apis:google-api-services-storage:v1-rev171-1.25.0'
api 'com.google.apis:google-api-services-storage:v1-rev20240319-2.0.0'

api 'com.google.api-client:google-api-client:2.2.0'
api 'com.google.api-client:google-api-client:2.5.0'

api 'com.google.api.grpc:proto-google-common-protos:2.37.1'
api 'com.google.api.grpc:proto-google-iam-v1:1.33.0'
api 'com.google.api.grpc:proto-google-common-protos:2.39.0'
api 'com.google.api.grpc:proto-google-cloud-storage-v2:2.38.0-alpha'
api 'com.google.api.grpc:proto-google-iam-v1:1.34.0'

api "com.google.auth:google-auth-library-credentials:${versions.google_auth}"
api "com.google.auth:google-auth-library-oauth2-http:${versions.google_auth}"
@@ -89,7 +82,7 @@ dependencies {
api "com.google.http-client:google-http-client-gson:${versions.google_http_client}"
api "com.google.http-client:google-http-client-jackson2:${versions.google_http_client}"

api 'com.google.oauth-client:google-oauth-client:1.34.1'
api 'com.google.oauth-client:google-oauth-client:1.36.0'

api "commons-logging:commons-logging:${versions.commonslogging}"
api "org.apache.logging.log4j:log4j-1.2-api:${versions.log4j}"