hi, in my build.xml file, I defined multiple address/ports in the 'dump' target, something like:
<target name="dump">
<jacoco:dump address="172.29.12.24" port="20435" destfile="${jacocoExecPath}/my-cart-api.exec" reset="false" append="false"/>
<jacoco:dump address="172.29.12.17" port="20753" destfile="${jacocoExecPath}/my-comment-api.exec" reset="false" append="false"/>
<jacoco:dump address="172.29.12.25" port="20990" destfile="${jacocoExecPath}/my-detail-api.exec" reset="false" append="false"/>
</target>
... and use 'ant -buildfile build.xml dump merge report' to generate the report. But, if one of these address/ports is not alive, ant will complain "connection refused" and quit with "unable to dump coverage data".
How can we let ant skip the unreachable address/port and continue to the next one, so that it can finish the whole job?
Thanks.
--huafeng