-
Notifications
You must be signed in to change notification settings - Fork 34
/
build.xml
31 lines (26 loc) · 990 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
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="jar" name="magpie">
<target name="build" description="Compile Magpie itself.">
<mkdir dir="bin" />
<javac debug = "true"
debuglevel = "source,lines,vars"
destdir = "bin"
includeantruntime = "false"
source = "1.6"
srcdir = "src"
target = "1.6" />
</target>
<target name="clean" description="Remove generated artifacts.">
<delete dir="bin" />
<delete file="magpie.jar" />
</target>
<target name="jar" depends="build" description="Generate magpie.jar.">
<jar destfile="magpie.jar" basedir="bin" includes="**/*.class">
<manifest>
<attribute name="Created-By" value="Marcus Martin" />
<attribute name = "Main-Class"
value = "com.stuffwithstuff.magpie.app.MagpieApp" />
</manifest>
</jar>
</target>
</project>