Created
September 9, 2011 14:01
-
-
Save leif81/1206293 to your computer and use it in GitHub Desktop.
'ant debug' target to launch jswat debug session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<target name="debug" depends="build"> | |
<property name="cp" refid="project.classpath"/> | |
<exec executable="jswat"> | |
<arg value="-J-Djswat.classpath=${cp}"/> | |
<arg value="-J-Djswat.sourcepath='${src.dir}'"/> | |
<arg value="-J-Djswat.launch=${main-class}"/> | |
<arg line="-J-Djswat.jvmopts='${cmd.line.arg.config} ${cmd.line.arg.logging}'"/> | |
</exec> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment