Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.5.5, 1.5.6
-
Fix Version/s: None
-
Component/s: Ant integration
-
Labels:None
-
Environment:Windows XP, CentOS
Description
Since Ant 1.6.3 nested targets can be used with antcall. In groovy 1.5.4 this works fine:
ant.antcall() {
target(name:"doFlashTwo")
target(name:"viewFlashResults")
}
and common dependencies are only processed once.
In groovy 1.5.5 (and 1.5.6) the common dependencies are processed twice and the build fails:
BUILD FAILED : Attribute target or at least one nested target is required.