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
4 changes: 2 additions & 2 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"

val jacksonV = "2.17.3"
val jacksonHotfixV = "2.17.3" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.18.1"
val jacksonHotfixV = "2.18.1" // for when only some of the Jackson libs have hotfix releases
val akkaV = "2.6.19"
val akkaHttpV = "10.2.10"
val workbenchLibsHash = "3e0cf25"
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.17.3"
val jacksonHotfixV = "2.17.3" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.18.1"
val jacksonHotfixV = "2.18.1" // for when only some of the Jackson libs have hotfix releases
val nettyV = "4.1.115.Final"
val workbenchLibsHash = "3e0cf25" // see https://github.com/broadinstitute/workbench-libs readme for hash values

Expand Down Expand Up @@ -44,7 +44,7 @@ object Dependencies {
// elasticsearch requires log4j, but we redirect log4j to logback
"org.apache.logging.log4j" % "log4j-to-slf4j" % "2.24.1",
"ch.qos.logback" % "logback-classic" % "1.5.12",
"io.sentry" % "sentry-logback" % "7.16.0",
"io.sentry" % "sentry-logback" % "7.17.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",

"org.parboiled" % "parboiled-core" % "1.4.1",
Expand All @@ -60,7 +60,7 @@ object Dependencies {
"org.broadinstitute.dsde.workbench" %% "workbench-notifications" %s"0.8-$workbenchLibsHash",
"org.databiosphere" % "workspacedataservice-client-okhttp-jakarta" % "0.2.167-SNAPSHOT",
"bio.terra" % "externalcreds-client-resttemplate" % "1.44.0-20240725.201427-1" excludeAll(excludeSpring, excludeSpringBoot),
"org.springframework" % "spring-web" % "6.1.14" excludeAll(excludeSpringBoot, excludeSpringJcl),
"org.springframework" % "spring-web" % "6.1.15" excludeAll(excludeSpringBoot, excludeSpringJcl),

"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
Expand Down
Loading