antから組み込みjettyサーバーをデバッグモードで起動するにはどうすればよいですか?これが私のbuild.xmlファイルです:
<target name="jettyRun">
<delete dir="jetty-temp" quiet="true" />
<jetty tempDirectory="jetty-temp">
<webApp name="${application.name}" warfile="${fileToDeploy}" contextpath="/${application.name}"/>
<webApp name="${application.name}resources" warfile="${resourcesToDeploy}" contextpath="/${application.name}resources"/>
</jetty>
</target>