Adde remote debug option to ant and also added titles to map icons
This commit is contained in:
parent
19bd06e28b
commit
f3482be14d
3 changed files with 51 additions and 9 deletions
12
build.xml
12
build.xml
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue