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.
たとえば、コンパイルする前にソースファイルの前処理を行う必要があります。要求されたcompile場合、sbtが常にこのタスクを実行するようにするにはどうすればよいですか?compile
compile
ローカルで公開する前にテストが実行されていることを確認するために、次のことを行います。
publishLocal <<= publishLocal dependsOn (test in Test)
あなたにとっては、次のようなものが必要だと思います
compile <<= compile dependsOn (myTask in myContext)