Skip to content

Commit

Permalink
Merge pull request #152 from scala-steward/update/2.9.x/patches
Browse files Browse the repository at this point in the history
[2.9.x] Patch updates
  • Loading branch information
mkurz committed May 12, 2024
2 parents eeb5d7a + 5694603 commit da07bdf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
cmd: |
cd code;
sbt ++$MATRIX_SCALA publishLocal;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.2 test;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.3 test;
cd ../test-app;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.2 test;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.3 test;
cd ../test-app-filters;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.2 test;
sbt ++$MATRIX_SCALA -DplayTestVersion=2.9.3 test;
cd ../code;
finish:
Expand Down
2 changes: 1 addition & 1 deletion code/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ homepage := Some(url("https://github.com/mkurz/deadbolt-2-java")) // Some(url("h
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
organization := "be.objectify"

crossScalaVersions := Seq("2.13.13", "3.3.3")
crossScalaVersions := Seq("2.13.14", "3.3.3")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion code/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.2")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.3")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
2 changes: 1 addition & 1 deletion test-app-filters/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := """test-app-filters"""

crossScalaVersions := Seq("2.13.13", "3.3.3")
crossScalaVersions := Seq("2.13.14", "3.3.3")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion test-app-filters/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("playTestVersion", "2.9.2"))
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("playTestVersion", "2.9.3"))

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
2 changes: 1 addition & 1 deletion test-app/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := """test-app"""

crossScalaVersions := Seq("2.13.13", "3.3.3")
crossScalaVersions := Seq("2.13.14", "3.3.3")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion test-app/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("playTestVersion", "2.9.2"))
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("playTestVersion", "2.9.3"))

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 comments on commit da07bdf

Please sign in to comment.