Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
java: 8
scala: 2.11.x, 2.12.x
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question: Why? You actually made this commit.
I was wondering this myself.

scala: 2.11.x
cmd: sbt ++$MATRIX_SCALA docs/test

check-docs-11:
Expand All @@ -48,7 +48,7 @@ jobs:
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
java: 8
scala: 2.11.x, 2.12.x
scala: 2.11.x
cmd: sbt ++$MATRIX_SCALA publishLocal test

tests-11:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ val specs2Test = Seq(
).map("org.specs2" %% _ % "4.10.6" % Test cross (CrossVersion.for3Use2_13))
.map(_.exclude("org.scala-lang.modules", "*"))

lazy val acolyte = "org.eu.acolyte" %% "jdbc-scala" % "1.2.9" % Test
lazy val acolyte = "org.eu.acolyte" %% "jdbc-scala" % "1.2.10" % Test

// Licensing
import de.heikoseeberger.sbtheader.HeaderPlugin.autoImport.HeaderPattern.commentBetween
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object Common extends AutoPlugin {
override def projectSettings = Seq(
organization := "org.playframework.anorm",
scalaVersion := "2.12.20",
crossScalaVersions := Seq("2.11.12", scalaVersion.value, "2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.11.12", scalaVersion.value, "2.13.16", "3.6.3"),
Compile / unmanagedSourceDirectories ++= {
val sv = scalaVersion.value

Expand Down
Loading