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)
sbt docker
. This task doesn't read any input, so I want a version of this task where an inputKey
is being parsed and this value is set like (imageNames in docker).map(_.copy(tag = inputValue))
... How can I accomplish something like that? This is a sbt docker
example, but should be valid for all cases where one would like user input to non-input task.
release
command like this - https://github.com/sbt/sbt/blob/249c1299a4deaf1756d12dce66e8eb477c719c75/build.sbt#L492-L500
Hi... I have some common dependencies in all projects.
I am thinking of creating a new library and move the common ones to that library. And then import that new library to load the common dependencies and only have project specific dependency in each project.
Can you please point me to an example on how to best do it...
~compile
, not sure.
*.class
filles related to the changed source in a temporary place before embarking on incremental compilation, and if the round of incremantal compilation results in an error, it places the old *.class
files back. so if you undo right away, the round 2 of incremental would be no-op.
npmDependencies
sbt console
on a subproject, specifically core
project in case-app:$ sbt core/console
[info] Loading global plugins from /Users/ryan/.sbt/0.13/plugins
[info] Loading project definition from /Users/ryan/c/case-app/project/project
[info] Loading project definition from /Users/ryan/c/case-app/project
[info] Set current project to case-app-root (in build file:/Users/ryan/c/case-app/)
[error] No valid parser available.
[error] core/console
[error] ^
confused why this doesn't work. this SO implies that it should.
also confused why regular sbt console
in this project doesn't appear to have any of the project's classes (e.g. caseapp.core
) import-able/available
[info] No tests were executed.
[info] No tests to run for views_common/test:testQuick
[info] Passed: Total 0, Failed 0, Errors 0, Passed 0
publish := publish dependsOn(test in Test)
. But this doesn't seem execute anything :(