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-jar.xml
52 lines (44 loc) · 1.75 KB
/
build-jar.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="hMod JarFile Compiler" default="jar" basedir=".">
<description>
This script will build the hMod jarfile.
</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}" />
</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="clean" description="Remove the output directories">
<delete dir="${build}" />
<delete dir="${dist}" />
</target>
</project>