diff build.xml @ 6:5abe5af181bd

Ant script to build commands and run sample
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 22 Dec 2010 03:33:37 +0100
parents
children 286d221f6c28
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/build.xml	Wed Dec 22 03:33:37 2010 +0100
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="hgkit" default="samples">
+    <description>
+            description
+    </description>
+
+    <target name="samples" depends="build">
+    	
+    	<echo message="History of a specific file"/>
+    	<java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log">
+    		<arg line="design.txt"/>
+    	</java>
+    	
+    	<echo message="Whole repo log"/>
+    	<java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log"/>
+    	
+    	<echo message="Content of a file"/>
+    	<java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Cat">
+    		<arg line="design.txt"/>
+    	</java>
+
+    </target>
+
+    <target name="build">
+    	<javac srcdir="src" destdir="bin"/>
+    	<jar destfile="hgkit.jar" basedir="bin"/>
+    </target>
+
+</project>