Mercurial > hg4j
comparison build.xml @ 71:ce6d23673f2d
Tests to run from build.xml
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sun, 23 Jan 2011 03:34:24 +0100 |
parents | 993f6f8e1314 |
children | 40d04c4f771e |
comparison
equal
deleted
inserted
replaced
70:993f6f8e1314 | 71:ce6d23673f2d |
---|---|
36 </java> | 36 </java> |
37 | 37 |
38 </target> | 38 </target> |
39 | 39 |
40 <target name="tests" depends="build, build-tests"> | 40 <target name="tests" depends="build, build-tests"> |
41 <java classpath="jhg.jar,jhg-tests.jar" classname="org.tmatesoft.hg.test.TestHistory"/> | 41 <java classpath="jhg.jar;jhg-tests.jar" classname="org.tmatesoft.hg.test.TestHistory"/> |
42 <java classpath="jhg.jar,jhg-tests.jar" classname="org.tmatesoft.hg.test.TestManifest"/> | 42 <java classpath="jhg.jar;jhg-tests.jar" classname="org.tmatesoft.hg.test.TestManifest"/> |
43 <java classpath="jhg.jar,jhg-tests.jar" classname="org.tmatesoft.hg.test.TestStatus"/> | 43 <java classpath="jhg.jar;jhg-tests.jar" classname="org.tmatesoft.hg.test.TestStatus"/> |
44 </target> | 44 </target> |
45 | 45 |
46 <target name="build"> | 46 <target name="build"> |
47 <mkdir dir="bin"/> | 47 <mkdir dir="bin"/> |
48 <javac srcdir="src" destdir="bin"/> | 48 <javac srcdir="src" destdir="bin"/> |
50 <fileset dir="bin/"> | 50 <fileset dir="bin/"> |
51 <include name="org/tmatesoft/hg/core/**" /> | 51 <include name="org/tmatesoft/hg/core/**" /> |
52 <include name="org/tmatesoft/hg/util/**" /> | 52 <include name="org/tmatesoft/hg/util/**" /> |
53 <include name="org/tmatesoft/hg/repo/**" /> | 53 <include name="org/tmatesoft/hg/repo/**" /> |
54 <include name="org/tmatesoft/hg/internal/**" /> | 54 <include name="org/tmatesoft/hg/internal/**" /> |
55 <!-- --> | |
56 <include name="com/tmate/hgkit/fs/**" /> | |
57 <include name="com/tmate/hgkit/ll/**" /> | |
55 </fileset> | 58 </fileset> |
56 </jar> | 59 </jar> |
57 </target> | 60 </target> |
58 | 61 |
59 <target name="build-tests"> | 62 <target name="build-tests"> |