-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
executable file
·42 lines (33 loc) · 1.2 KB
/
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
37
38
39
40
41
42
name := "functadelic"
scalaVersion := "2.11.2"
scalaOrganization := "org.scala-lang.virtualized"
resolvers += Resolver.sonatypeRepo("snapshots")
libraryDependencies ++= Seq(
"org.scala-lang.lms" %% "lms-core" % "1.0.0-SNAPSHOT",
"org.scala-lang.plugins" % "scala-continuations-library_2.11" % "1.0.2",
"com.github.manojo" % "lms-utils_2.11" % "0.1-SNAPSHOT",
"com.github.manojo" % "lms-testutils_2.11" % "0.1-SNAPSHOT" % "test",
"com.github.manojo" % "staged-fold-fusion_2.11" % "0.1-SNAPSHOT",
"com.propensive" %% "rapture" % "2.0.0-M3" exclude ("com.propensive","rapture-json-lift_2.11"),
"com.chuusai" %% "shapeless" % "2.2.5",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
)
scalacOptions ++= Seq(
"-Yvirtualize",
"-P:continuations:enable",
//"-optimize",
"-deprecation",
"-feature",
"-language:higherKinds",
"-language:implicitConversions"
//"-Yinline-warnings"
)
/**
* tests are not thread safe
* this applies to all lms tests that write
* to a file, and do diff tests
*/
parallelExecution in Test := false
autoCompilerPlugins := true
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.2" % "1.0.2")
defaultScalariformSettings