summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-10-22 18:50:45 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2017-10-22 18:50:45 -0700
commit3bfac52e0f81dfcdaf892d631ff14d7e9f9190cc (patch)
tree8283927f4a760307830aa9412913cb749e93b5d4 /build.sbt
parent991e404da10ce66a35206fe4e16784582503ee74 (diff)
downloadmill-3bfac52e0f81dfcdaf892d631ff14d7e9f9190cc.tar.gz
mill-3bfac52e0f81dfcdaf892d631ff14d7e9f9190cc.tar.bz2
mill-3bfac52e0f81dfcdaf892d631ff14d7e9f9190cc.zip
- Basic dirty-checking of targets works; targets can now request to be recomputed independent of their inputs
- Split out `Target` and `TargetOps`, so `Target` can be a pristine description of what a subclass needs to implement - Convert targets from `case class`es into normal `class`s, since none of the case class functionality is useful - Disable parallel execution in tests, since we don't really need it right now and it jumbles up incremental test reporting
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 340f4e6c..30b81658 100644
--- a/build.sbt
+++ b/build.sbt
@@ -8,6 +8,8 @@ libraryDependencies += "com.lihaoyi" %% "utest" % "0.6.0" % "test"
testFrameworks += new TestFramework("forge.Framework")
+parallelExecution in Test := false
+
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",