summaryrefslogtreecommitdiff
path: root/Plugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'Plugin.scala')
-rw-r--r--Plugin.scala24
1 files changed, 4 insertions, 20 deletions
diff --git a/Plugin.scala b/Plugin.scala
index 512e195..81359a5 100644
--- a/Plugin.scala
+++ b/Plugin.scala
@@ -1,22 +1,10 @@
package com.lihaoyi.workbench
-import akka.actor.{ActorRef, Actor, ActorSystem}
-import scala.concurrent.duration._
-
-
import sbt._
import Keys._
-import akka.actor.ActorDSL._
-import com.typesafe.config.ConfigFactory
import upickle._
-import spray.http.{AllOrigins, HttpResponse}
-import spray.routing.SimpleRoutingApp
-import spray.http.HttpHeaders.`Access-Control-Allow-Origin`
-
object Plugin extends sbt.Plugin {
-
-
val refreshBrowsers = taskKey[Unit]("Sends a message to all connected web pages asking them to refresh the page")
val updateBrowsers = taskKey[Unit]("partially resets some of the stuff in the browser")
val localUrl = settingKey[(String, Int)]("localUrl")
@@ -83,14 +71,10 @@ object Plugin extends sbt.Plugin {
}
}
},
- server := {
- new Server(localUrl.value._1, localUrl.value._2, bootSnippet.value)
- },
- onLoad := { state =>
- state
- },
- onUnload := { state =>
+ server := new Server(localUrl.value._1, localUrl.value._2, bootSnippet.value),
+ (onUnload in Global) := { (onUnload in Global).value.compose{ state =>
+ server.value.kill()
state
- }
+ }}
)
}