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 quartz scheduler version to resolve cve #4879

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -816,4 +816,7 @@ lazy val `hmda-quarterly-data-service` = (project in file ("hmda-quarterly-data-
packageSettings
)
.dependsOn(common % "compile->compile;test->test")
.dependsOn(`hmda-protocol` % "compile->compile;test->test")
.dependsOn(`hmda-protocol` % "compile->compile;test->test")

libraryDependencies += "org.quartz-scheduler" % "quartz" % "2.5.0-rc1"
dependencyOverrides in ThisBuild += "org.quartz-scheduler" % "quartz" % "2.5.0-rc1"
1 change: 1 addition & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ object Dependencies {
lazy val scalacheckShapeless = "com.github.alexarchambault" %% "scalacheck-shapeless_1.14" % Version.scalacheckShapeless % Test
lazy val diffx = "com.softwaremill.diffx" %% "diffx-core" % Version.diffx % Test
lazy val kubernetesApi = "io.kubernetes" % "client-java" % Version.kubernetesApi
lazy val quartzScheduler = "org.quartz-scheduler" % "quartz" % Version.quartzScheduler

// overriding the log4j-slf4j bridge used by spring, transitively brought in by s3mock
// this is needed because of CVE-2021-44228 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228
Expand Down
1 change: 1 addition & 0 deletions project/Version.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ object Version {
val log4j = "2.15.0"
val kubernetesApi = "21.0.0-legacy"
val testContainers = "1.19.8"
val quartzScheduler = "2.5.0-rc1"
}
Loading