forked from js-scala/js-scala
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (19 loc) · 843 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
name := "js-scala"
organization := "EPFL"
version := "0.3-SNAPSHOT"
scalaOrganization := "org.scala-lang.virtualized"
scalaVersion := "2.10.1"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.0.M5b" % "test",
"EPFL" %% "lms" % "0.3-SNAPSHOT")
//--- End of Dependencies
scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xexperimental", "-P:continuations:enable", "-Yvirtualize", "-language:dynamics")
//Our tests are not threadsafe so disabling parallel execution for now
parallelExecution in Test := false
// disable publishing of main docs
publishArtifact in (Compile, packageDoc) := false
// continuations
autoCompilerPlugins := true
libraryDependencies <<= (scalaVersion, libraryDependencies) { (ver, deps) =>
deps :+ compilerPlugin("org.scala-lang.virtualized.plugins" % "continuations" % ver)
}