Skip to content

Commit

Permalink
adding ant build file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Lewis committed May 7, 2014
1 parent 068b0c7 commit 75c25b3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project easyccg">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/easyccg.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="uk.ac.ed.easyccg.main.EasyCCG"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/bin"/>
<zipfileset excludes="META-INF/*.SF" src="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/lib/guava-15.0.jar"/>
<zipfileset excludes="META-INF/*.SF" src="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/lib/mtj-1.0-snapshot.jar"/>
<zipfileset excludes="META-INF/*.SF" src="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/lib/jewelcli-0.7.6.jar"/>
<zipfileset excludes="META-INF/*.SF" src="/afs/inf.ed.ac.uk/user/s10/s1049478/workspace/easyccg/lib/edu.mit.jwi_2.3.0.jar"/>
</jar>
</target>
</project>

0 comments on commit 75c25b3

Please sign in to comment.