Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Non-AWS dependency updates #173

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import ReleaseStateTransformations.*
import sbtversionpolicy.withsbtrelease.ReleaseVersion

val contentEntityVersion = "4.0.0"
val scroogeVersion = "22.1.0" // remember to also update plugins.sbt if the scrooge version changes
val scroogeVersion = "22.12.0" // remember to also update plugins.sbt if the scrooge version changes
val thriftVersion = "0.20.0" // remember to also update package.json if the thrift version changes

val artifactProductionSettings = Seq(
organization := "com.gu",
scalaVersion := "2.13.12",
scalaVersion := "2.13.14",
// downgrade scrooge reserved word clashes to warnings
Compile / scroogeDisableStrict := true,
// Scrooge 21.3.0 dropped support for scala < 2.12, so we can only build for Scala 2.12+
// https://twitter.github.io/scrooge/changelog.html#id11
crossScalaVersions := Seq("2.12.18", scalaVersion.value),
crossScalaVersions := Seq("2.12.20", scalaVersion.value),
licenses := Seq(License.Apache2)
/*
Test / testOptions +=
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.8
sbt.version=1.9.9
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "22.1.0")
addSbtPlugin("com.gu" % "sbt-scrooge-typescript" % "1.6.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.0")
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "22.12.0")
addSbtPlugin("com.gu" % "sbt-scrooge-typescript" % "3.0.3")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")



Expand Down