Skip to content

Commit

Permalink
Merge pull request #403 from guardian/update/non_aws
Browse files Browse the repository at this point in the history
chore(deps): Non-AWS dependency updates
  • Loading branch information
akash1810 authored Dec 13, 2023
2 parents 8f17ecb + f8cb448 commit f32303a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/orgs/playframework/discussions/11222
val jacksonVersion = "2.14.2"
val jacksonVersion = "2.16.0"

val jacksonOverrides = Seq(
"com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8",
Expand All @@ -19,7 +19,7 @@ lazy val root = (project in file("."))
.settings(
name := """cdk-playground""",
version := "1.0-SNAPSHOT",
scalaVersion := "2.13.10",
scalaVersion := "2.13.12",
scalacOptions ++= List(
"-encoding", "utf8",
"-deprecation",
Expand All @@ -36,9 +36,9 @@ lazy val root = (project in file("."))
libraryDependencies ++= jacksonOverrides
++ akkaSerializationJacksonOverrides
++ Seq(
"net.logstash.logback" % "logstash-logback-encoder" % "7.3",
"net.logstash.logback" % "logstash-logback-encoder" % "7.4",
// Transient dependency of Play. No newer version of Play 2.9 or Play 3.0 with this vulnerability fixed.
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
),

buildInfoKeys ++= Seq[BuildInfoKey](
Expand Down
2 changes: 1 addition & 1 deletion conf/application.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
play.application.loader= AppLoader
play.http.secret.key = "this is not a production system"
play.http.secret.key = "this is not a production system, so it doesn't matter too much that this is plain text"
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.9.7
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.16")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

libraryDependencies += "org.vafer" % "jdeb" % "1.8" artifacts Artifact("jdeb", "jar", "jar")
libraryDependencies += "org.vafer" % "jdeb" % "1.10" artifacts Artifact("jdeb", "jar", "jar")

0 comments on commit f32303a

Please sign in to comment.