sbt-revolver
sbt-revolver copied to clipboard
An SBT plugin for dangerously fast development turnaround in Scala
I have a project with a root module (obviously has a main class, `object Main` for example) that depends on multiple other modules that do not have main classes as...
refs #97
I want to specify the main class through cli. I have tried the following — ``` reStart/mainClass "example.HelloWorld" ``` But it doesn't work. What else can I do?
Would it be possible to make revolver work with ScalaJS? Instead of running on the JVM, the process would run using `node`. What needs to be done to support that?
Hi, I need to launch and debug sbt + akka + revolver/reStart in Docker environment. I see that `Revolver.enableDebugging(port = 5020, suspend = true)` creates [`DebugSettings`](https://github.com/spray/sbt-revolver/blob/d75a1eafc00f9269285411b938090481c7cd49f9/src/main/scala/spray/revolver/DebugSettings.scala#L5) in the end with...
On May 1st Bintray will be sunset (https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/). Do you already have plans to move sbt-revolver somewhere else? The brownouts mentioned on that page have already started I think.
When using revolver with sbtn, I see no output from the forked task. I assume the output is being streamed on the server side and is not ending up in...
My configuration is fairly simple, but at startup I add a shutdown hook: Runtime.getRuntime.addShutdownHook(...) However, at re-stop (or ~re-start code change) the hook is never fired. The documentation explicitly states...