Skip to content
Closed
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
3 changes: 3 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ object Dependencies {
val logbackVersion = "1.5.32"
val slf4jVersion = "2.0.17"

val commonsCodecVersion = "1.21.0"

// often called-in transitively with insecure versions of databind / core
private val jacksonDatabind = Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion)
Expand Down Expand Up @@ -158,6 +160,7 @@ object Dependencies {
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion,
"org.apache.pekko" %% "pekko-slf4j" % pekkoVersion,
"org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion,
"commons-codec" % "commons-codec" % commonsCodecVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test,
"org.scalatestplus" %% "junit-4-13" % scalaTestPlusJUnitVersion % Test,
"org.apache.pekko" %% "pekko-testkit" % pekkoVersion % Test) ++
Expand Down
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ addSbtPlugin("com.github.sbt" % "sbt-header" % "5.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")
addSbtPlugin("com.github.sbt" % "sbt-java-formatter" % "0.10.0")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.1")
// need commons-codec upgrade here due to clashes with dependency versions used in pekko-management itself
libraryDependencies += "commons-codec" % "commons-codec" % "1.21.0"
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.6.1")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.32")
Expand Down
Loading