Skip to content
Open
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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ val commonSettings = Seq(
"com.gu" %% "simple-configuration-ssm" % "7.0.0",
"com.gu" %% "pan-domain-auth-play_2-9" % pandaVersion,
"com.google.api-client" % "google-api-client" % "2.0.1",
"com.google.apis" % "google-api-services-sheets" % "v4-rev20221216-2.0.0",
"com.google.apis" % "google-api-services-sheets" % "v4-rev20251110-2.0.0",
"org.languagetool" % "languagetool-core" % languageToolVersion,
"org.languagetool" % "language-en" % languageToolVersion,
"com.gu" %% "content-api-models-scala" % capiModelsVersion,
Expand All @@ -79,7 +79,7 @@ val commonSettings = Seq(
// The jackson-module-scala version below must be kept in sync with the
// transitive dependency on jackson-databind introduced by our AWS
// dependencies.
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.18.0",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.18.0"
),
libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always,
checkJackson := {
Expand Down Expand Up @@ -136,19 +136,19 @@ def playProject(
),
commonSettings,
libraryDependencies ++= Seq(
// we use this fork of lz4-java just to fix the vulnerability issue
// we use this fork of lz4-java just to fix the vulnerability issue
// in the link below. Once Play picked up a fixed version of lz4-java
// officially, it can be removed together with the excludeDependencies
// below
"at.yawk.lz4" % "lz4-java" % "1.8.1" % Runtime
),
),
excludeDependencies ++= Seq(
// https://github.com/guardian/typerighter/security/dependabot/267
ExclusionRule(
organization = "org.lz4",
name = "lz4-java"
)
),
)
)

val checker = playProject(
Expand Down
Loading