[GRADLE-2449] Task creation options are not validated to exist (e.g. no fail fast on typo) Created: 28/Aug/12 Updated: 03/Sep/13 Resolved: 03/Sep/13 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | None |
Fix Version/s: | 1.8-rc-1 |
Type: | Bug | ||
Reporter: | Gradle Forums | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Description |
For example, the following typo will be silently ignored.
task foo(depndsOn: bar) << {
println " World!"
}
If any unknown option is passed here, it should be an error condition. |