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)
val foo = project.in(file(...)).dependsOn(bar, quux)
, i am trying to write a Task that when in foo
gives bar
and quux
. i've chased it down to using the thisProject
key which gives me http://www.scala-sbt.org/0.13.15/api/index.html#sbt.ResolvedProject on which i can call dependencies
but the information given in a ProjectRef
is not enough to reconstruct the actual sbt project ref
units
which is in BuildStructure
.
val buildStructure = TaskKey[BuildStructure]("build-structure", "Provides access to the build structure, settings, and streams manager.", DTask)
javaOptions in assembly += "-Dlogback.configurationFile=" + logbackConfigPath
logbackConfigPath
is the path to the logback.xml