-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
27 lines (24 loc) · 890 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
<?xml version="1.0"?>
<project name="MinecraftLogFormatter" basedir="." default="build">
<property name="src.dir" value="./"/>
<property name="build.dir" value="bin"/>
<target name="build" description="Compiling the Project MouseBalance">
<mkdir dir ="${build.dir}"/>
<javac destdir="${build.dir}" source="1.7" target="1.7">
<src path="${src.dir}"/>
</javac>
<jar destfile="${basedir}/MinecraftLogFormatter.jar"
basedir="${build.dir}">
<manifest>
<attribute name="Main-Class" value="de.agent94ger.minecraft.LogFormatter.LogFormatter"/>
</manifest>
</jar>
</target>
<target name="clean">
<delete>
<fileset dir="${build.dir}">
<include name="**/*.class"/>
</fileset>
</delete>
</target>
</project>