mirror of https://github.com/sbt/sbt.git
So far we had ability to configure compile task specific settings on `Compile` Configuration scope only. We can now add `compile` task scope as well. Usecase: one can now specify: ``` // applies for all tasks on Compile axis scalacOptions in Compile += "-deprecation" // applies for compile tasks on Compile axis scalacOptions in (Compile, compile) += "-Xcheckinit" // effectively, "-deprecation -Xcheckinit" ``` |
||
|---|---|---|
| .. | ||
| notes | ||
| src/sbt-test | ||
| package.scala | ||