mirror of https://github.com/sbt/sbt.git
add maintenance notes and GSG links to Tasks and TaskInputs
parent
1bfc4153e9
commit
26dd7022ac
|
|
@ -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"
|
||||
}
|
||||
```
|
||||
```
|
||||
|
|
|
|||
10
Tasks.md
10
Tasks.md
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue