hi
am using core ant java task to start application.It is not allowing for remote debugging.plz giv me some suggestions.
code
<java classname="${javato.app.main.class}"
fork="true" dir="${javato.work.dir}" maxmemory="1024m">
<arg line="${javato.app.args}"/>
<jvmarg line="${jvm_args}"/>
<!-- <sysproperty key="javato.deadlock.goodlock" value="false"/> -->
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
<classpath>
<pathelement location="${javato.work.dir}/tmpclasses"/>
<pathelement path="${javato.app.class.path}"/>
<pathelement location="${javato.home.dir}/classes"/>
</classpath>
</java>
<stopwatch name="timer" action="total"/>
<echo message="${timer}${line.separator}"
file="${javato.work.dir}/error.time" append="true"/>
</target>
|