changeset 85:ade65afe0906

Merge
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 25 Jan 2011 22:53:54 +0100
parents 08754fce5778 (current diff) 40d04c4f771e (diff)
children ee4458416579
files
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/build.xml	Tue Jan 25 22:53:28 2011 +0100
+++ b/build.xml	Tue Jan 25 22:53:54 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/**" />