Есть ли способ запустить Windows Explorer из ant без остановки сборки?
Вот что у меня есть:
<project default="default">
<target name="default">
<fail unless="customerName">
You need to set the customerName.
-DcustomerName=Value
</fail>
<fail unless="htmlCode">
You need to set the htmlCode.
-DcustomerName=Value
</fail>
<exec executable="cmd">
<arg value="-b">
</exec>
<exec executable="explorer">
<arg value='"C:\working_copies\${customerName}\${htmlCode}"' />
</exec>
<exec executable="explorer">
К сожалению, приведенный выше код делает паузу для каждого открытого окна, и я не получаю оба окна моего проводника одновременно.