<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project sg2u">
    <!--this file was created by Eclipse Runnable JAR Export Wizard-->
    <!--ANT 1.7 is required                                        -->
    <target name="create_run_jar" depends="compile">
        <jar destfile="/home/scribe/src/community/utils/java/sg2u/sg2u.jar" filesetmanifest="mergewithoutmain">
            <manifest>
                <attribute name="Main-Class" value="org.crosswire.mss.transcript.Convert"/>
                <attribute name="Class-Path" value="."/>
            </manifest>
            <fileset dir="/home/scribe/src/community/utils/java/sg2u/bin"/>
        </jar>
    </target>



  <path id="classpath">
     <fileset dir="lib">
        <include name="**/*.jar"/>
      </fileset>
  </path>
  <target name="compile">
    <javac debug="on"
           srcdir="src"
           includes="**/*.java"
           destdir="bin"
		 classpathref="classpath"
		includeantruntime="false"
           source="1.6">
    </javac>
  </target>
</project>
