Commit c1567318 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Added run target


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@728 b35dd754-fafc-0310-a699-88a17e54d16e
parent 734f0071
......@@ -233,6 +233,16 @@
<antcall target="-prepare" />
</target>
<!-- run =================================================================================== -->
<target name="run" depends="jar" description="Starts Messenger inline to the build process.">
<condition property="run.debug" value="-Xdebug -Xint -server -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000">
<isset property="debug" />
</condition>
<java jar="${target.dir}/lib/startup.jar" fork="true" dir="${target.dir}/bin">
<jvmarg line="${run.debug}" />
</java>
</target>
<!-- deployjar ============================================================================= -->
<target name="deployjar" depends="jar" description="Pushes JARs to specified web location.">
<copy todir="${deploy.jar.dir}" overwrite="${overwrite}">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment