Skip to content

Commit

Permalink
Drop Scala 2.11 support (playframework#179)
Browse files Browse the repository at this point in the history
* Drop Scala 2.11 support

* Use Scala 2.13.0-M5 instead the one from interplay
  • Loading branch information
marcospereira authored and octonato committed Apr 30, 2019
1 parent e718329 commit ca8dcb8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import sbt.inc.Analysis
import interplay.ScalaVersions._
import interplay.ScalaVersions.scala212

val scala213 = "2.13.0-M5"
val Versions = new {
val play: String = playVersion(sys.props.getOrElse("play.version", "2.7.0"))
val play: String = playVersion(sys.props.getOrElse("play.version", "2.7.2"))
val playEnhancer = "1.2.2"
val ebean = "11.33.2"
val ebeanAgent = "11.27.1"
Expand All @@ -23,7 +24,7 @@ lazy val core = project
.enablePlugins(Playdoc, PlayLibrary, JacocoPlugin)
.settings(
name := "play-ebean",
crossScalaVersions := Seq(scala211, scala212, scala213),
crossScalaVersions := Seq(scala212, scala213),
libraryDependencies ++= playEbeanDeps,
compile in Compile := enhanceEbeanClasses(
(dependencyClasspath in Compile).value,
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.0.5"))
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.0.6"))

addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.0.2")

Expand Down

0 comments on commit ca8dcb8

Please sign in to comment.