I have the following situation:
Build file 1: <target name="test-all"> ... <ant dir="subproject" target="test" /> ... </target> Build file 1 in directory subproject: <target name="test"> <junit .... failureproperty="junit.fail"> </junit> </target> I'd like the property, "junit.fail" to be visible in the first build file. In other words, I want the property to propagate upwards. Is this possible? Thank you for your help. Scott