summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-05-09 10:39:14 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-05-21 09:09:56 (GMT)
commitaa03065dc96ac967d662362b9e506c5bb741386a (patch)
treed3c8e9f05fa242d6c505033593b01fcca9828170 /build.xml
parent19340ddc7dc929aad094eed3f6a3cd7f84d86a4b (diff)
downloadstroke-aa03065dc96ac967d662362b9e506c5bb741386a.zip
stroke-aa03065dc96ac967d662362b9e506c5bb741386a.tar.bz2
Use the Aalto XML parser instead of XPP
Also adds a 'make test' target for the Makefile. Set the JUNIT environment variable to point to your jar if it doesn't find it.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 6aaf392..454325d 100644
--- a/build.xml
+++ b/build.xml
@@ -16,12 +16,14 @@
<property name="main-class" value="com.isode.stroke.examples.gui.StrokeGUI"/>
<property name="compile.debug" value="true"/>
<property name="testsuiteclass" value="com.isode.stroke.unittest.StrokeTestSuite" />
- <property name="xpp-dir" value="../third-party/xpp"/>
+ <property name="aalto-dir" value="../third-party/aalto"/>
+ <property name="stax2-dir" value="../third-party/stax2"/>
<property name="jzlib-dir" value="../third-party/jzlib"/>
<property name="icu4j-dir" value="../third-party/icu4j"/>
<path id="classpath">
- <fileset dir="${xpp-dir}" includes="xpp.jar"/>
+ <fileset dir="${aalto-dir}" includes="aalto-xml.jar"/>
+ <fileset dir="${stax2-dir}" includes="stax2-api.jar"/>
<fileset dir="${jzlib-dir}" includes="jzlib.jar"/>
<fileset dir="${icu4j-dir}" includes="icu4j.jar"/>
</path>
@@ -93,9 +95,9 @@
sourcepath="${src}"
destdir="${doc}"
windowtitle="Stroke">
- <classpath>
+ <!--<classpath>
<fileset dir="${xpp-dir}" includes="xpp.jar"/>
- </classpath>
+ </classpath>-->
<link href="http://docs.oracle.com/javase/6/docs/api/"/>
</javadoc>
</target>