我有这个用于 ant 的构建 xml:
<project>
<target name="JSCover-start">
<java jar="/root/JSCover/target/dist/JSCover-all.jar" fork="true" spawn="true">
<arg value="-ws"/>
</java>
<waitfor maxwait="5" maxwaitunit="second" checkevery="250" checkeveryunit="millisecond" timeoutproperty="failed">
<http url="http://localhost:8080/jscoverage.html"/>
</waitfor>
<fail if="failed"/>
</target>
</project>
它构建良好,但该过程尚未开始。
以下启动服务器非常好:
/usr/bin/java -jar /root/JSCover/target/dist/JSCover-all.jar -ws