Skip to content

Instantly share code, notes, and snippets.

@gabriellett
Last active December 16, 2015 06:19
Show Gist options
  • Save gabriellett/5390811 to your computer and use it in GitHub Desktop.
Save gabriellett/5390811 to your computer and use it in GitHub Desktop.
Ant target configured for debugging.
<target name="compile" depends="">
<javac srcdir="gensrc" destdir="bin">
<classpath refid="compile.classpath"/>
</javac>
<javac srcdir="src" destdir="bin" debug="true" debuglevel="lines,vars" encoding="UTF-8">
<classpath refid="[pathid]"/>
</javac>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment