Is it possible for xml files that are part of \'includes\' inside build.xml to have depends on targets from that build.xml (backwards dependency)? Or do I need to create a c
This works for me: In the main project file the target default depends on a target from commontasks.xml
which depends on a target from the main project file:
initializing main
hello from common tasks
aValue: ${aValue}
When I run the ant build, I get:
initMain:
[echo] initializing main
common.hello:
[echo] hello from common tasks
[echo] aValue: MAIN
default:
BUILD SUCCESSFUL
The dependency is target default
depends on hello
depends on initMain
and hello
can use properties defined in initMain
.