summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorchibash <chiba@javassist.org>2017-11-15 03:05:05 +0900
committerchibash <chiba@javassist.org>2017-11-15 03:05:05 +0900
commitb86c14888230d12d3844a469e3b34be11dbf4053 (patch)
tree29150acb663add9381ec1b21fc20a86085b85266 /build.xml
parentb7e59d4dc0222d34732c8efd87872b562501e14b (diff)
downloadjavassist-b86c14888230d12d3844a469e3b34be11dbf4053.tar.gz
javassist-b86c14888230d12d3844a469e3b34be11dbf4053.zip
changes getDefinedPackage back to getPackage when Java is < 9.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 38a2cc8d..5273c494 100644
--- a/build.xml
+++ b/build.xml
@@ -32,6 +32,7 @@
<path id="test.compile.classpath">
<pathelement location="${build.classes.dir}"/>
<pathelement location="${lib.dir}/junit.jar"/>
+ <pathelement location="${lib.dir}/hamcrest.jar"/>
</path>
<property name="test.compile.classpath" refid="test.compile.classpath"/>
@@ -39,7 +40,8 @@
<path id="test.classpath">
<pathelement location="${test.build.dir}"/>
<pathelement location="${lib.dir}/junit.jar"/>
- <pathelement location="${build.classes.dir}"/>
+ <pathelement location="${lib.dir}/hamcrest.jar"/>
+ <pathelement location="${build.classes.dir}"/>
</path>
<property name="test.classpath" refid="test.classpath"/>