In SBT 0.13
docker <<= docker dependsOn assembly
gives a deprecation warning. Instead the :=
operator is recommended.
docker := {
assembly.value
docker.value
}
Does not work, because order of execution is not guaranteed. I need these two tasks to run in serial.
What's the trick?