sbt/sbt
Indrajit Raychaudhuri 2e554c10ba Add support for compile task specific settings on `compile` task axis
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"
```
2012-03-06 11:20:11 +05:30
..
notes merge changes for 0.11.0 2011-09-24 20:42:29 -04:00
src/sbt-test Add support for compile task specific settings on `compile` task axis 2012-03-06 11:20:11 +05:30
package.scala split command core to main/command/ 2012-01-29 14:36:27 -05:00