執行任務需要你的幫助:Groovy的AntBuilder後臺
試圖用Groovy執行Ant任務,以便它不會等待來自腳本的響應(即在後臺運行)
我已經嘗試了以下兩種方式,但沒有成功
//Cannot find script
ant.exec(failonerror: "true", executable: "scriptname.sh &")
// Says: You have used an attribute or nested element which is not compatible with spawn
ant.exec(failonerror: "true", spawn:"true", executable: "scriptname.sh")
有關如何完成此任務的任何建議?我搜索了谷歌,但找不到任何Groovy的好例子。
謝謝你們,我感謝你的幫助。
它的工作與否? – Opal
不幸的是,我對gradle並不是特別熟悉,而且我的系統架構相當先進,安裝的驅動器包含shell腳本。我試圖通過編寫第二個shell腳本來完成它,並嘗試簡化我的解決方案。我很感激你花時間回答。 – azdragon2