Skip to content
Merged
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.16"

val jacksonV = "2.19.1"
val jacksonHotfixV = "2.19.1" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.19.2"
val jacksonHotfixV = "2.19.2" // for when only some of the Jackson libs have hotfix releases
val akkaV = "2.6.19"
val akkaHttpV = "10.2.10"
val workbenchLibsHash = "9df42f5"
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.19.1"
val jacksonHotfixV = "2.19.1" // for when only some of the Jackson libs have hotfix releases
val jacksonV = "2.19.2"
val jacksonHotfixV = "2.19.2" // for when only some of the Jackson libs have hotfix releases
val workbenchLibsHash = "9df42f5" // 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 @@ -26,14 +26,14 @@ object Dependencies {
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonHotfixV,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonV,
"org.yaml" % "snakeyaml" % "2.4",
"org.apache.commons" % "commons-compress" % "1.27.1", // workbench-libs libraries pull this in
"org.apache.commons" % "commons-compress" % "1.28.0", // workbench-libs libraries pull this in
"com.google.apis" % "google-api-services-pubsub" % "v1-rev20250414-2.0.0", // from workbench-google2
"com.google.apis" % "google-api-services-admin-directory" % "directory_v1-rev20250707-2.0.0" // from workbench-google2
)

val rootDependencies: Seq[ModuleID] = Seq(
"ch.qos.logback" % "logback-classic" % "1.5.18",
"io.sentry" % "sentry-logback" % "8.13.3",
"io.sentry" % "sentry-logback" % "8.18.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"org.parboiled" % "parboiled-core" % "1.4.1",
"org.broadinstitute.dsde" %% "rawls-model" % "v0.0.511-SNAP"
Expand All @@ -57,15 +57,15 @@ object Dependencies {
"org.broadinstitute.dsde.workbench" %% "workbench-notifications" % s"1.1-$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.8" excludeAll (excludeSpringBoot, excludeSpringJcl),
"org.springframework" % "spring-web" % "6.2.9" excludeAll (excludeSpringBoot, excludeSpringJcl),
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV excludeAll (excludeAkkaActor, excludeAkkaStream),
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV % "test",
"com.github.jwt-scala" %% "jwt-core" % "11.0.0",
"com.github.jwt-scala" %% "jwt-core" % "11.0.2",
// javax.mail is used only by MethodRepository.validatePublicOrEmail(). Consider
// refactoring that method to remove this entire dependency.
"com.sun.mail" % "javax.mail" % "1.6.2"
Expand Down
Loading