Skip to content

Commit

Permalink
Corrected test classes dir variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
awulder committed Sep 23, 2013
1 parent 4c428f7 commit d58ab7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
</target>

<target name="compile_tests" depends="resolve" description="compile the test sources (make)">
<mkdir dir="${test.classes.dir}" />
<javac srcdir="${test.dir}" destdir="${test.classes.dir}" classpathref="classpath" debug="true" source="1.6" target="1.6" includeantruntime="false" />
<mkdir dir="${test-classes.dir}" />
<javac srcdir="${test.dir}" destdir="${test-classes.dir}" classpathref="classpath" debug="true" source="1.6" target="1.6" includeantruntime="false" />
</target>

<target name="post-compile" depends="stamp-version, retrieve" description="post-compile steps, use those in your IDE" />
Expand Down

0 comments on commit d58ab7c

Please sign in to comment.