view build.xml @ 8:a78c980749e3

Filename mangling according to requires options of the store (fncache incomplete for long names)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 23 Dec 2010 01:31:40 +0100
parents 286d221f6c28
children d6d2a630f4a6
line wrap: on
line source
<?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">
    	<mkdir dir="bin"/>
    	<javac srcdir="src" destdir="bin"/>
    	<jar destfile="hgkit.jar" basedir="bin"/>
    </target>

</project>