Skip to content

Commit

Permalink
Add line numbers to debug information, 25% jar size increase :( :( bu…
Browse files Browse the repository at this point in the history
…t easier debugging :) :)
  • Loading branch information
loopj committed Jun 14, 2011
1 parent 70ac4f0 commit e39d40e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.xml
Expand Up @@ -35,7 +35,13 @@
<target name="compile">
<mkdir dir="${build.dir}" />
<mkdir dir="${classes.dir}" />
<javac srcdir="src" destdir="${classes.dir}" classpathref="classpath" />

<javac
srcdir="."
destdir="${classes.dir}"
classpathref="classpath"
debug="true"
debuglevel="lines,source" />
</target>

<!-- Package a jar from compiled class files -->
Expand Down

0 comments on commit e39d40e

Please sign in to comment.