在ant脚本中使用'ant'标签会启动一个单独的JVM吗?
我的代码是:
<target name="run" description="base tests">
<ant dir="suite1"/>
<ant dir="suite2"/>
<ant dir="suite3"/>
</target
从ANT手册中,它说如果我们在目标标签中使用' ANT ',它不是同一构建文件的一部分,但是当我监视Java进程时,只有一个Java进程在我的机器上运行。
它在同一个JVM中作为一个单独的项目运行