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

GH-16423 - fix hadoop jars after gcs upgrade [nocheck] #16428

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion h2o-persist-gcs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ description = "H2O Persist GCS"

dependencies {
api project(":h2o-core")
api ('com.google.cloud:google-cloud-storage:2.43.2')
api ('com.google.cloud:google-cloud-storage:2.13.1')

testImplementation project(":h2o-test-support")
testRuntimeOnly project(":${defaultWebserverModule}")

constraints {
api('com.google.protobuf:protobuf-java:3.25.5') {
because 'Fixes CVE-2024-7254'
because 'Fixes SNYK-JAVA-COMGOOGLEPROTOBUF-8055227'
because 'Fixes SNYK-JAVA-COMGOOGLEPROTOBUF-8055228'
}
}
}

apply from: "${rootDir}/gradle/dataCheck.gradle"
Expand Down
Loading