The TaskJuggler Manual | ||
---|---|---|
Prev | Chapter 7. Property Reference | Next |
value
>
<unit
>gapduration
<value >
<unit >
| |||
---|---|---|---|
Description | Specifies the minimum required gap between the end of a preceding task and the start of this task, or the start of a following task and the end of this task. This is calendar time, not working time. 7d means one week. | ||
Attributes | Name | Type | Description |
value | REAL | ||
unit | UNIT | ||
Context | depends, precedes, | ||
Inheritable | Yes | Scenario Spec. | Yes |
See also | duration, gaplength |
project prj "Example Project" "1.0" 2005-05-29 - 2005-07-01 task t1 "Task 1" { start 2005-05-29 } task t2 "Task 2" { # starts 5 calendar days after t1 depends !t1 { gapduration 5d } } task t3 "Task 3" { # starts 5 working days after t1 depends !t1 { gaplength 5d } }