From 38fe95dd654af4840b96ad7fc2d8e431668d3d05 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 25 Apr 2019 09:14:50 -0400 Subject: [PATCH] Enable fork On macOS, this allows the example to quit without taking down sbt process with: ``` Could not exit(0): no application associated with Thread[AppKit Thread,5,system] 2019-04-25 09:07:42.021 java[48062:11015174] JavaNativeFoundation error occurred obtaining Java exception description 2019-04-25 09:07:42.021 java[48062:11015174] JavaNativeFoundation error occurred obtaining Java exception description 2019-04-25 09:07:42.021 java[48062:11015174] Internal JNF Error: failed calling Throwable.toString() ``` --- build.sbt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index ecd910c..78d3b47 100644 --- a/build.sbt +++ b/build.sbt @@ -19,3 +19,6 @@ libraryDependencies ++= Seq( "underscoreio" %% "doodle" % "0.8.3", "org.typelevel" %% "cats-core" % "1.1.0" ) + +Compile / fork := true +Test / fork := true