Skip to content

Commit

Permalink
Merge pull request #226 from mkurz/latest_scala_sbt_versions
Browse files Browse the repository at this point in the history
Latest Scala/sbt versions
  • Loading branch information
mkurz authored Oct 10, 2022
2 parents 97858ca + c7fbc33 commit 7f1d4dc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import sbt._

object Dependencies {
// scalaVersion needs to be kept in sync with ci
val Scala212 = "2.12.16"
val Scala213 = "2.13.8"
val Scala212 = "2.12.17"
val Scala213 = "2.13.10"
val ScalaVersions = Seq(Scala212, Scala213)

val PlayVersion = sys.props.getOrElse("play.version", sys.env.getOrElse("PLAY_VERSION", "2.8.16"))
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.7.1
sbt.version=1.7.2
4 changes: 2 additions & 2 deletions samples/compile-timeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ThisBuild / dynverVTagPrefix := false

ThisBuild / dynverSonatypeSnapshots := true

scalaVersion := "2.13.8"
scalaVersion := "2.13.10"

crossScalaVersions := Seq("2.12.16", "2.13.8")
crossScalaVersions := Seq("2.12.17", "2.13.10")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer" % version.value,
Expand Down
2 changes: 1 addition & 1 deletion samples/compile-timeDI/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.7.1
sbt.version=1.7.2
4 changes: 2 additions & 2 deletions samples/runtimeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ThisBuild / dynverVTagPrefix := false

ThisBuild / dynverSonatypeSnapshots := true

scalaVersion := "2.13.8"
scalaVersion := "2.13.10"

crossScalaVersions := Seq("2.12.16", "2.13.8")
crossScalaVersions := Seq("2.12.17", "2.13.10")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer-guice" % version.value,
Expand Down
2 changes: 1 addition & 1 deletion samples/runtimeDI/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.7.1
sbt.version=1.7.2

0 comments on commit 7f1d4dc

Please sign in to comment.