Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
比如我需要在编译前对源文件做一些预处理。我如何确保 sbt 在被请求之前总是运行这个compile任务compile?
compile
以下是我为确保在本地发布之前运行测试而采取的措施:
publishLocal <<= publishLocal dependsOn (test in Test)
对于你,我认为你需要类似的东西
compile <<= compile dependsOn (myTask in myContext)