I have custom tasks in my SBT (0.12.2) project. Let\'s call them a, b and c. So when I\'m in the interactive mode of SBT I can just type <
a
b
c
I've figured it out:
lazy val taskSettings = Seq( all <<= c dependsOn (b dependsOn a) )