Skip to content
Merged
6 changes: 3 additions & 3 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.18.2"
val jacksonHotfixV = "2.18.2" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.18.3"
val jacksonHotfixV = "2.18.3" // 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 Expand Up @@ -36,7 +36,7 @@ object Dependencies {
val rootDependencies: Seq[ModuleID] = Seq(
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonV,
"net.virtual-void" %% "json-lenses" % "0.6.2" % "test",
"ch.qos.logback" % "logback-classic" % "1.5.16",
"ch.qos.logback" % "logback-classic" % "1.5.17",
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
Expand Down
12 changes: 6 additions & 6 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.18.2"
val jacksonHotfixV = "2.18.2" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.18.3"
val jacksonHotfixV = "2.18.3" // for when only some of the Jackson libs have hotfix releases
val nettyV = "4.1.119.Final"
val workbenchLibsHash = "3e0cf25" // see https://github.com/broadinstitute/workbench-libs readme for hash values

Expand Down Expand Up @@ -43,8 +43,8 @@ object Dependencies {

// elasticsearch requires log4j, but we redirect log4j to logback
"org.apache.logging.log4j" % "log4j-to-slf4j" % "2.24.3",
"ch.qos.logback" % "logback-classic" % "1.5.16",
"io.sentry" % "sentry-logback" % "8.1.0",
"ch.qos.logback" % "logback-classic" % "1.5.17",
"io.sentry" % "sentry-logback" % "8.4.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.83.0-SNAPSHOT" excludeAll(excludeSpring, excludeSpringBoot),
"org.springframework" % "spring-web" % "6.2.2" excludeAll(excludeSpringBoot, excludeSpringJcl),
"org.springframework" % "spring-web" % "6.2.4" excludeAll(excludeSpringBoot, excludeSpringJcl),

"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
Expand Down Expand Up @@ -96,7 +96,7 @@ object Dependencies {
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
"org.mock-server" % "mockserver-netty-no-dependencies" % "5.15.0" % "test",
// provides testing mocks
"com.google.cloud" % "google-cloud-nio" % "0.127.30" % "test",
"com.google.cloud" % "google-cloud-nio" % "0.127.33" % "test",
"org.scalatestplus" %% "mockito-4-5" % "3.2.12.0" % "test"
)
}
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")

addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")

Expand Down
Loading