[GRADLE-3349] GroovyDoc task does not mark all properties that affect the output of the task as inputs Created: 15/Oct/15 Updated: 29/Mar/16 Resolved: 29/Mar/16 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | None |
Fix Version/s: | 2.14-rc-1 |
Type: | Bug | ||
Reporter: | Sterling Greene | Assignee: | Pepper Lebeck-Jobe |
Resolution: | Fixed | Votes: | 0 |
Description |
If 'overview' is set to a file, we should include this as an input to the task. There appear to be other properties like this too (titles, header/footer, etc). Workaround is to manually add these as inputs to the task, e.g.:
groovydoc {
overview = "overview.html"
inputs.file overview
}
|