我想從一個Ant構建運行JBoss TattleTale。通常我從命令行運行它像這樣:這些Ant/JVM參數有什麼問題?
java -Xmx512m -jar /home/myuser/jars/tattletale.jar /home/myuser/projects/lib /home/myuser/tmp/tt
其中/home/myuser/projects/src
是源目錄,我所有的罐子,並在/home/myuser/tmp/tt
是我把所有的告密的報告的輸出目錄。
在Ant構建我使用了以下內容:
<echo message="Running tattle-tale..."/>
<java fork="true" failonerror="true" jar="/home/myuser/jars/tattletale.jar">
<arg value="Xmx512m"/>
<arg value="/home/myuser/projects/lib"/>
<arg value="/home/myuser/tmp/tt"/>
</java>
當我從命令行運行這一目標:
run-tattletale:
[echo] Running tattle-tale...
BUILD SUCCESSFUL
Total time: 3 seconds
當我去/home/myuser/tmp/tt
我沒有看到任何輸出,然而Ant輸出顯示SUCCESS
沒有錯誤或警告。我的<arg>
看起來是否正確,如果不正確,我應該如何改變它們?如果他們確實看起來正確,我能做些什麼來調試?提前致謝!
感謝@Mike Q(+1) - 但我仍然沒有看到輸出目錄中正在生成的任何東西。 – IAmYourFaja