add maintenance notes and GSG links to Tasks and TaskInputs

Havoc Pennington 2011-10-19 10:42:12 -04:00
parent 1bfc4153e9
commit 26dd7022ac
2 changed files with 22 additions and 1 deletions

@ -1,5 +1,16 @@
# Task Inputs/Dependencies
Tasks with dependencies are now introduced in the
[[getting started guide|Getting Started More About Settings]],
which you may wish to read first. This older page may have some
additional detail.
_Wiki Maintenance Note:_ This page should have its overlap with
the getting started guide cleaned up, and just have any advanced
or additional notes. It should maybe also be consolidated with
[[Tasks]].
An important aspect of the task system introduced in sbt 0.10 is to combine two common, related steps in a build:
1. Ensure some other task is performed.
@ -104,4 +115,4 @@ zipPath <<= target map {
(t: File) =>
t / "out.zip"
}
```
```

@ -5,6 +5,16 @@
# Tasks
Tasks and settings are now introduced in the
[[getting started guide|Getting Started Basic Def]], which you may
wish to read first. This older page has some additional detail.
_Wiki Maintenance Note:_ This page should have its overlap with
the getting started guide cleaned up, and just have any advanced
or additional notes. It should maybe also be consolidated with
[[TaskInputs]].
# Introduction
sbt 0.10+ has a new task system that integrates with the new settings system.