Skip to content

Commit 2589e25

Browse files
committed
update build to Scala 2.11.2
1 parent 5203507 commit 2589e25

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ libraryDependencies += "org.scala-lang.virtualized" % "scala-library" % virtScal
2323

2424
libraryDependencies += "org.scala-lang.virtualized" % "scala-compiler" % virtScala
2525

26+
libraryDependencies += "org.scala-lang.plugins" % "scala-continuations-library_2.11" % "1.0.2"
27+
2628
libraryDependencies += scalaTest
2729

2830

@@ -36,7 +38,7 @@ publishArtifact in (Compile, packageDoc) := false
3638
// continuations
3739
autoCompilerPlugins := true
3840

39-
addCompilerPlugin("org.scala-lang.virtualized.plugins" % "continuations" % virtScala)
41+
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.2" % "1.0.2")
4042

4143
scalacOptions += "-P:continuations:enable"
4244

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import java.io.File
44
object LMSBuild extends Build {
55
System.setProperty("showSuppressedErrors", "false")
66

7-
val scalaTest = "org.scalatest" % "scalatest_2.10" % "2.1.2"
7+
val scalaTest = "org.scalatest" % "scalatest_2.11" % "2.2.2"
88

9-
val virtScala = Option(System.getenv("SCALA_VIRTUALIZED_VERSION")).getOrElse("2.10.2")
9+
val virtScala = Option(System.getenv("SCALA_VIRTUALIZED_VERSION")).getOrElse("2.11.2")
1010

1111
lazy val lms = Project("LMS", file("."))
1212
}

0 commit comments

Comments
 (0)