From 926a726ea39cbf7a8b83d53f530399175d9e9ce2 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sat, 12 Nov 2011 17:45:12 -0500 Subject: [PATCH] fork jvm for test, run, and test:run --- build.sbt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.sbt b/build.sbt index a5c558d8..4c781988 100644 --- a/build.sbt +++ b/build.sbt @@ -7,6 +7,12 @@ name := "config" version := "0.1" +fork in test := true + +fork in run := true + +fork in run in Test := true + libraryDependencies += "net.liftweb" %% "lift-json" % "2.4-SNAPSHOT" % "test" libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test"