Mercurial > hg4j
changeset 81:40d04c4f771e
build.xml: samples target fixed to use proper package names.
author | alex |
---|---|
date | Tue, 25 Jan 2011 15:11:58 +0100 |
parents | 4222b04f34ee |
children | ade65afe0906 |
files | build.xml |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/build.xml Tue Jan 25 03:54:32 2011 +0100 +++ b/build.xml Tue Jan 25 15:11:58 2011 +0100 @@ -23,15 +23,15 @@ <target name="samples" depends="build"> <echo message="History of a specific file(s)"/> - <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Log"> + <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Log"> <arg line="design.txt .classpath src/com/tmate/hgkit/ll/LocalHgRepo.java"/> </java> <echo message="Whole repo log"/> - <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Log"/> + <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Log"/> <echo message="Content of a file"/> - <java classpath="jhg.jar" classname="com.tmate.hgkit.console.Cat"> + <java classpath="jhg.jar" classname="org.tmatesoft.hg.console.Cat"> <arg line="src/com/tmate/hgkit/ll/Revlog.java"/> </java> @@ -49,6 +49,7 @@ <jar destfile="jhg.jar"> <fileset dir="bin/"> <include name="org/tmatesoft/hg/core/**" /> + <include name="org/tmatesoft/hg/console/**" /> <include name="org/tmatesoft/hg/util/**" /> <include name="org/tmatesoft/hg/repo/**" /> <include name="org/tmatesoft/hg/internal/**" />