-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.xml
26 lines (23 loc) · 1020 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="build" name="Create Runnable Jar for Project Ash">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<path id="lib">
<fileset dir="lib" includes="*.jar"/>
</path>
<target name="build">
<delete dir="build"/>
<delete dir="bin"/>
<mkdir dir="build"/>
<mkdir dir="bin"/>
<javac srcdir="src" destdir="bin" classpathref="lib" debug="on"/>
<jar destfile="/Users/samtebbs/Documents/GitRepos/ash/build/ash.jar" filesetmanifest="mergewithoutmain">
<zipgroupfileset dir="lib" includes="*.jar"/>
<manifest>
<attribute name="Main-Class" value="ashc.main.AshMain"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="/Users/samtebbs/Documents/GitRepos/ash/bin"/>
</jar>
</target>
</project>