diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2012-06-05 14:53:58 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2012-06-05 14:53:58 +0000 |
commit | 4ef16d3ab2ab50a9d04623018187d716f6cb434e (patch) | |
tree | fb02ca185f4739d929ace09586fcf12b1e37d509 /build.xml | |
parent | d32c3a0ac0504e420d54aab03df72efd2b9861d2 (diff) | |
download | javassist-4ef16d3ab2ab50a9d04623018187d716f6cb434e.tar.gz javassist-4ef16d3ab2ab50a9d04623018187d716f6cb434e.zip |
fixed JASSIST-168
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@631 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -13,12 +13,12 @@ <property name="target-src.jar" value="javassist-src.jar"/> <property name="lib.dir" value="${basedir}/lib"/> <property name="src.dir" value="${basedir}/src/main"/> - <property name="build.dir" value="${basedir}/build"/> + <property name="build.dir" value="${basedir}/target"/> <property name="build.classes.dir" value="${build.dir}/classes"/> <property name="test.src.dir" value="${basedir}/src/test"/> - <property name="test.build.dir" value="${basedir}/build/test-classes"/> + <property name="test.build.dir" value="${build.dir}/test-classes"/> <property name="test.run.dir" value="${basedir}/runtest"/> - <property name="test.reports.dir" value = "${basedir}/build/test-output"/> + <property name="test.reports.dir" value = "${build.dir}/test-output"/> <property name="run.dir" value="${build.classes.dir}"/> |