This repository has been archived by the owner on Oct 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
build.xml
77 lines (68 loc) · 2.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8"?>
<project name="hMod Full Package Compiler" default="dist" basedir=".">
<description>
This script will build the hMod jarfile and zip appropriate files.
</description>
<property name="src" location="src" />
<property name="lib" location="lib" />
<property name="build" location="build" />
<property name="dist" location="dist" />
<path id="classpath">
<fileset dir="jarjar">
<include name="minecraft_servero.jar" />
<include name="jarjar.jar" />
</fileset>
</path>
<target name="verifyRequirements" description="Checks if the necessary requirements for building Handler are fulfilled">
<available classname="javax.script.ScriptContext" property="JDK6.present" />
<fail unless="JDK6.present" message="JDK 6 or greater is required." />
</target>
<target name="init" depends="clean, verifyRequirements" description="Create the output directories.">
<mkdir dir="${build}" />
<mkdir dir="${build}/classes" />
<mkdir dir="${dist}" />
<mkdir dir="${dist}/plugins" />
<mkdir dir="${dist}/log" />
</target>
<target name="compile" depends="init" description="Compile the source.">
<javac destdir="${build}/classes" optimize="on" debug="on" debuglevel="lines,vars,source" source="1.6" target="1.6" nowarn="off">
<src path="${src}" />
<classpath refid="classpath" />
</javac>
</target>
<target name="jar" depends="compile" description="Create the jar file">
<jar destfile="${dist}/Minecraft_Mod.jar">
<fileset dir="${build}/classes" />
<manifest>
<attribute name="Main-Class" value="Main" />
<attribute name="Class-Path" value="minecraft_servero.jar jarjar.jar mysql-connector-java-bin.jar plugins/" />
</manifest>
</jar>
</target>
<target name="dist" depends="jar" >
<copy todir="${dist}">
<fileset dir="files">
<include name="*.sql" />
<include name="*.txt" />
<include name="*.bat" />
<include name="*.sh" />
</fileset>
<fileset dir="jarjar">
<include name="minecraft_server.jar" />
<include name="jarjar.jar" />
<include name="mysql-connector-java-bin.jar" />
<include name="rules.rules" />
</fileset>
</copy>
<copy todir="${dist}/plugins">
<fileset dir="files/plugins">
<include name="*.txt" />
</fileset>
</copy>
<zip destfile="${dist}/hMod.zip" basedir="${dist}" />
</target>
<target name="clean" description="Remove the output directories">
<delete dir="${build}" />
<delete dir="${dist}" />
</target>
</project>