Skip to content

Commit

Permalink
chore(deps): Non-AWS dependency updates (#11)
Browse files Browse the repository at this point in the history
* Update logstash-logback-encoder to 7.4

* Fix Jackson dependency conflict

---------

Co-authored-by: gu-scala-steward-public-repos[bot] <108136057+gu-scala-steward-public-repos[bot]@users.noreply.github.com>
Co-authored-by: Kelvin Chappell <kelvin.chappell@theguardian.com>
  • Loading branch information
1 parent 41bd21a commit e70b24b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ lazy val root = (project in file("."))
s"-J-Dlogs.home=/var/log/${packageName.value}",
),
libraryDependencies ++= Seq(
"net.logstash.logback" % "logstash-logback-encoder" % "7.3",
"net.logstash.logback" % "logstash-logback-encoder" % "7.4",
("com.gu" %% "simple-configuration-ssm" % "1.6.4").cross(CrossVersion.for3Use2_13),
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test,
),
dependencyOverrides ++= Seq(
// To keep all Jackson dependencies on the same version
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.15.2" % Runtime,
)
)

0 comments on commit e70b24b

Please sign in to comment.