Adde remote debug option to ant and also added titles to map icons

This commit is contained in:
Ziver Koc 2016-07-17 03:00:03 +02:00
parent 19bd06e28b
commit f3482be14d
3 changed files with 51 additions and 9 deletions

View file

@ -40,7 +40,17 @@
<target name="run" depends="release">
<java fork="true" failonerror="true" classname="se.hal.HalServer">
<classpath>
<pathelement path="${releaseDir}/hal.jar"/> <!--wildcard may not be platform independent, ok?-->
<pathelement path="${releaseDir}/hal.jar"/>
<pathelement path="${libDir}/*"/> <!--wildcard may not be platform independent, ok?-->
</classpath>
</java>
</target>
<target name="remote-debug" depends="release">
<java fork="true" failonerror="true" classname="se.hal.HalServer">
<jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" />
<classpath>
<pathelement path="${releaseDir}/hal.jar"/>
<pathelement path="${libDir}/*"/> <!--wildcard may not be platform independent, ok?-->
</classpath>
</java>