Upgrade Scala version in scripted tests

Both continuations and macro-config set scalaVersion explicitly but since
sbt relies now on Scala 2.10 it's not needed anymore. In particular, we
can upgrade continuations to 2.10 which makes it easier to work with Java
8.
This commit is contained in:
Grzegorz Kossakowski 2016-01-05 12:15:10 +01:00 committed by Dale Wijnand
parent e80029a868
commit f34085e31e
2 changed files with 2 additions and 6 deletions

View File

@ -22,5 +22,3 @@ mappings in (Compile, packageSrc) <++=
// This can be omitted if the classes in src/macro/ aren't used at runtime
mappings in (Compile, packageBin) <++=
mappings in (config("macro"), packageBin)
scalaVersion := "2.10.0-M7"

View File

@ -1,7 +1,5 @@
autoCompilerPlugins := true
addCompilerPlugin("org.scala-lang.plugins" % "continuations" % "2.9.2")
libraryDependencies += compilerPlugin("org.scala-lang.plugins" % "continuations" % scalaVersion.value)
scalaVersion := "2.9.2"
scalacOptions += "-P:continuations:enable"
scalacOptions += "-P:continuations:enable"