A relaxed chat room about sbt (the interactive build tool). Also good for sbt help: Stack Overflow, or Lightbend subscription. https://www.scala-sbt.org/support.html has advice on where to go.
eed3si9n on 0.13
Adds bundledLauncherProj to all… Remove launcher tests Add unit tests to Travis and 3 more (compare)
eed3si9n on fixbuild
eed3si9n on fixbuild
Fix typo (compare)
eed3si9n on fixbuild
Adds bundledLauncherProj to all… Remove launcher tests Add unit tests to Travis and 1 more (compare)
eed3si9n on scalaversionbump
eed3si9n on 0.13
Bumping up Scala version to 2.1… Try to keep bincompat Fixes #1666 and 1 more (compare)
eed3si9n on scalaversionbump
Fixes #1666 (compare)
@ritschwumm i'm trying to run some code after sbt-revolver's ~re-start
. I tried the following:
lazy val sampleTask = taskKey[Int]("A sample task.")
sampleTask := {
(reStart in Compile).value
val sum = 1 + 2
println("sum: " + sum)
sum
}
and running sbt sampleTask
only prints 3
and doesn't execute what re-start
would normally do.
~
point. can't even get it to trigger once
target
is unreliable as there's two batches of writes so it would trigger twice
whatDependsOn
is not meant to be user-facing API? https://github.com/jrudolph/sbt-dependency-graph/blob/v0.8.2/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala#L73