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 #254 from mkurz/Xmigration
Browse files Browse the repository at this point in the history
`-Xmigration` for Scala 2.13.12
  • Loading branch information
mkurz authored Sep 11, 2023
2 parents 9d89249 + ccc14cb commit b29d00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/interplay/PlayBuildBase.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object PlayBuildBase extends AutoPlugin {

scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-encoding", "utf8") ++
(CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 13)) => Seq("-Xsource:3")
case Some((2, 13)) => Seq("-Xsource:3", "-Xmigration")
case _ => Seq.empty
}),
javacOptions ++= Seq("-encoding", "UTF-8", "-Xlint:-options"),
Expand Down

0 comments on commit b29d00b

Please sign in to comment.