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

Fix security vulnerabilities in h2o3 3.46.0.2 87 #16300

4 changes: 0 additions & 4 deletions h2o-assemblies/main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ shadowJar {
zip64 true
mergeServiceFiles()
classifier = ''
// CDH 5.3.0 provides joda-time v1.6 which is too old, shadow the library instead
if (!project.hasProperty("jacocoCoverage")) {
relocate 'org.joda.time', 'ai.h2o.org.joda.time'
}
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.SF'
exclude 'synchronize.properties'
Expand Down
4 changes: 4 additions & 0 deletions h2o-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ dependencies {
testRuntimeOnly project(":${defaultWebserverModule}")
testCompileOnly "javax.servlet:javax.servlet-api:${servletApiVersion}"
testImplementation "com.amazonaws:aws-java-sdk-s3:${awsJavaSdkVersion}"

constraints {
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.15.0'
}
}

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