From e6d2b32902c1206deaf817c025becb25fa5200c9 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Sat, 25 May 2019 11:28:34 -0700 Subject: [PATCH] Add scripted watchTriggers This allows the scripted test files to trigger a continuous scripted build. --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 20d9bade1..818210006 100644 --- a/build.sbt +++ b/build.sbt @@ -895,6 +895,7 @@ def otherRootSettings = scripted := scriptedTask.evaluated, scriptedUnpublished := scriptedUnpublishedTask.evaluated, scriptedSource := (sourceDirectory in sbtProj).value / "sbt-test", + watchTriggers in scripted += scriptedSource.value.toGlob / **, scriptedLaunchOpts := List("-Xmx1500M", "-Xms512M", "-server"), publishAll := { val _ = (publishLocal).all(ScopeFilter(inAnyProject)).value }, publishLocalBinAll := { val _ = (publishLocalBin).all(ScopeFilter(inAnyProject)).value },