Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #207 from scala-steward/update/sbt-1.7.0
Browse files Browse the repository at this point in the history
Update sbt, scripted-plugin to 1.7.1
  • Loading branch information
mergify[bot] authored Jul 12, 2022
2 parents 691f345 + 63f62f3 commit f4c53f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.7.1
2 changes: 1 addition & 1 deletion src/main/scala/interplay/PlaySbtBuildBase.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ private[interplay] object PlaySbtBuildBase extends AutoPlugin {
override def projectSettings = Seq(
scalaVersion := ScalaVersions.scala212,
crossScalaVersions := Seq(ScalaVersions.scala212),
pluginCrossBuild / sbtVersion := SbtVersions.sbt16,
pluginCrossBuild / sbtVersion := SbtVersions.sbt17,
compile / javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
doc / javacOptions := Seq("-source", "1.8")
)
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/interplay/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package interplay
object ScalaVersions {
val scala212 = "2.12.16"
val scala213 = "2.13.8"
val scala3 = "3.1.2"
val scala3 = "3.1.3"
}

object SbtVersions {
val sbt16 = "1.6.1"
val sbt17 = "1.7.1"
}

0 comments on commit f4c53f0

Please sign in to comment.