Mercurial > hg4j
comparison build.xml @ 81:40d04c4f771e
build.xml: samples target fixed to use proper package names.
author | alex |
---|---|
date | Tue, 25 Jan 2011 15:11:58 +0100 |
parents | ce6d23673f2d |
children | ee4458416579 |
comparison
equal
deleted
inserted
replaced
80:4222b04f34ee | 81:40d04c4f771e |
---|---|
21 </description> | 21 </description> |
22 | 22 |
23 <target name="samples" depends="build"> | 23 <target name="samples" depends="build"> |
24 | 24 |
25 <echo message="History of a specific file(s)"/> | 25 <echo message="History of a specific file(s)"/> |
26 <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Log"> | 26 <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Log"> |
27 <arg line="design.txt .classpath src/com/tmate/hgkit/ll/LocalHgRepo.java"/> | 27 <arg line="design.txt .classpath src/com/tmate/hgkit/ll/LocalHgRepo.java"/> |
28 </java> | 28 </java> |
29 | 29 |
30 <echo message="Whole repo log"/> | 30 <echo message="Whole repo log"/> |
31 <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Log"/> | 31 <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Log"/> |
32 | 32 |
33 <echo message="Content of a file"/> | 33 <echo message="Content of a file"/> |
34 <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Cat"> | 34 <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Cat"> |
35 <arg line="src/com/tmate/hgkit/ll/Revlog.java"/> | 35 <arg line="src/com/tmate/hgkit/ll/Revlog.java"/> |
36 </java> | 36 </java> |
37 | 37 |
38 </target> | 38 </target> |
39 | 39 |
47 <mkdir dir="bin"/> | 47 <mkdir dir="bin"/> |
48 <javac srcdir="src" destdir="bin"/> | 48 <javac srcdir="src" destdir="bin"/> |
49 <jar destfile="jhg.jar"> | 49 <jar destfile="jhg.jar"> |
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/console/**" /> | |
52 <include name="org/tmatesoft/hg/util/**" /> | 53 <include name="org/tmatesoft/hg/util/**" /> |
53 <include name="org/tmatesoft/hg/repo/**" /> | 54 <include name="org/tmatesoft/hg/repo/**" /> |
54 <include name="org/tmatesoft/hg/internal/**" /> | 55 <include name="org/tmatesoft/hg/internal/**" /> |
55 <!-- --> | 56 <!-- --> |
56 <include name="com/tmate/hgkit/fs/**" /> | 57 <include name="com/tmate/hgkit/fs/**" /> |