[GRADLE-2946] resolve error when ivy.xml is incorrect due to unnamespaced elements Created: 04/Nov/13 Updated: 10/Nov/13 Resolved: 10/Nov/13 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 1.8, 1.9-rc-1 |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Szczepan Faber | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 0 |
Known Issue Of: |
Description |
Gradle 1.8 is less forgiving for incorrect ivy.xml of the resolved dependencies. Missing namespace may lead to resolution errors: //correct: <artifact name="foo-src" type="source" ext="zip" conf="src" m:classifier="sources" /> //incorrect, 'classifier' missing a namespace: <artifact name="foo-src" type="source" ext="zip" conf="src" classifier="sources" /> We probably won't take any action on this mild incompatibility (otherwise what's the point of xml validation?). The xml file should be corrected, instead. I'm creating this ticket for documentation purposes. |