summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-13 09:46:40 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-13 09:46:40 -0800
commit056ccd28b64434974bf3a06cf32f0dd8b7954d70 (patch)
treea3793bbfaada12934e379ea511a908f3c6bdc69b /build.sbt
parent7fc589857d7943668ac045997cc5eb128d2e24d1 (diff)
downloadmill-056ccd28b64434974bf3a06cf32f0dd8b7954d70.tar.gz
mill-056ccd28b64434974bf3a06cf32f0dd8b7954d70.tar.bz2
mill-056ccd28b64434974bf3a06cf32f0dd8b7954d70.zip
Allow `classPathSig` to be injected into `Evaluator`, and in `ReplApplyHandler` keep using the same one every time to avoid busting caches due to REPL commands being added to the classpath
Reverts https://github.com/lihaoyi/mill/pull/60, which seems to break `mill.scalaplugin.AcyclicTests.scala2123` (reproducible in master) Tweak `build.sbt` to properly set the forked test working directory in `test-only` as well as `test`
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index eb789b79..57035a6e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -100,8 +100,8 @@ lazy val scalaplugin = project
sharedSettings,
name := "mill-scalaplugin",
fork in Test := true,
- baseDirectory in (Test, test) := (baseDirectory in (Test, test)).value / "..",
- javaOptions in (Test, test) := bridgeProps.value.toSeq
+ baseDirectory in Test := (baseDirectory in Test).value / "..",
+ javaOptions in Test := bridgeProps.value.toSeq
)
lazy val bin = project
.dependsOn(scalaplugin)