Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions automation/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import sbt._
object Dependencies {
val scalaV = "2.13.16"

val jacksonV = "2.19.2"
val jacksonHotfixV = "2.19.2" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.20.0"
val jacksonAnnotationsV = "2.20"
val akkaV = "2.6.19"
val akkaHttpV = "10.2.10"
val workbenchLibsHash = "9df42f5"
Expand Down Expand Up @@ -32,8 +32,8 @@ object Dependencies {
// by being listed here.
// One reason to specify an override here is to avoid static-analysis security warnings.
val transitiveDependencyOverrides: Seq[ModuleID] = Seq(
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonV,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonHotfixV,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonAnnotationsV,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonV,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonV,
"io.grpc" % "grpc-xds" % "1.56.1",
"org.typelevel" %% "cats-effect" % "3.4.11",
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import sbt._
object Dependencies {
val akkaV = "2.9.3"
val akkaHttpV = "10.6.3"
val jacksonV = "2.19.2"
val jacksonHotfixV = "2.19.2" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.20.0"
val jacksonAnnotationsV = "2.20"
val workbenchLibsHash = "56f2c74" // see https://github.com/broadinstitute/workbench-libs readme for hash values

val excludeAkkaActor = ExclusionRule(organization = "com.typesafe.akka", name = "akka-actor_2.13")
Expand All @@ -22,8 +22,8 @@ object Dependencies {
// One reason to specify an override here is to avoid static-analysis security warnings.
val transitiveDependencyOverrides: Seq[ModuleID] = Seq(
"com.google.guava" % "guava" % "33.4.8-jre",
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonV,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonHotfixV,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonAnnotationsV,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonV,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonV,
"org.yaml" % "snakeyaml" % "2.5",
"org.apache.commons" % "commons-compress" % "1.28.0", // workbench-libs libraries pull this in
Expand Down
Loading