How to alias a sequence of tasks?

前端 未结 3 525
梦谈多话
梦谈多话 2021-02-04 03:16

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 <

3条回答
  •  梦毁少年i
    2021-02-04 03:40

    I've figured it out:

    lazy val taskSettings = Seq(
        all <<= c dependsOn (b dependsOn a)
    )
    

提交回复
热议问题