diff build.xml @ 9:d6d2a630f4a6

Access to underlaying file data wrapped into own Access object, implemented with FileChannel and ByteBuffer
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sat, 25 Dec 2010 04:45:59 +0100
parents 286d221f6c28
children 993f6f8e1314
line wrap: on
line diff
--- a/build.xml	Thu Dec 23 01:31:40 2010 +0100
+++ b/build.xml	Sat Dec 25 04:45:59 2010 +0100
@@ -6,9 +6,9 @@
 
     <target name="samples" depends="build">
     	
-    	<echo message="History of a specific file"/>
+    	<echo message="History of a specific file(s)"/>
     	<java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log">
-    		<arg line="design.txt"/>
+    		<arg line="design.txt .classpath src/com/tmate/hgkit/ll/LocalHgRepo.java"/>
     	</java>
     	
     	<echo message="Whole repo log"/>
@@ -16,7 +16,7 @@
     	
     	<echo message="Content of a file"/>
     	<java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Cat">
-    		<arg line="design.txt"/>
+    		<arg line="src/com/tmate/hgkit/ll/Revlog.java"/>
     	</java>
 
     </target>