我正在使用 Maven 3.0.3。我有这个 antrun 任务,它使用“exec”命令......
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>start-xvfb</id>
<phase>process-test-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo message="Starting xvfb ..." />
<exec executable="Xvfb" spawn="true" failonerror="true">
<arg value=":0.0" />
</exec>
</tasks>
</configuration>
</execution>
虽然我可以在输出中看到 echo 语句,但在标准输出中看不到任何可执行文件输出。我该怎么做才能将其重定向到回显消息所在的同一位置?
谢谢, - 戴夫