-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.sbt
36 lines (20 loc) · 960 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name := "lms-clean"
organization := "org.scala-lang.virtualized"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.12.8"
val paradiseVersion = "2.1.0"
//crossScalaVersions := Seq("2.12.1")
resolvers += Resolver.sonatypeRepo("snapshots")
resolvers += Resolver.sonatypeRepo("releases")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
libraryDependencies += ("org.scala-lang" % "scala-reflect" % scalaVersion.value)
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "compile")
addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full)
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.12.0" % "1.0.3")
libraryDependencies += "org.scala-lang.plugins" % "scala-continuations-library_2.12" % "1.0.3"
scalacOptions += "-P:continuations:enable"
// --- testing ---
// tests are not thread safe
parallelExecution in Test := false