-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathbuild.xml
51 lines (44 loc) · 2.11 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="TownyChat" default="jar" basedir=".">
<property name="build" value="bin" />
<property file="build.properties" />
<property environment="env"/>
<target name="clean">
<delete dir="${build}" />
</target>
<target name="init" depends="clean">
<mkdir dir="${build}" />
<mkdir dir="${env.LIB}" />
</target>
<target name="download" depends="init">
<get src="http://palmergames.com/libs/bukkit.jar" dest="${env.LIB}/bukkit.jar" skipexisting="true" />
<get src="http://palmergames.com/libs/Towny.jar" dest="${env.LIB}/Towny.jar" skipexisting="true" />
<get src="http://palmergames.com/libs/Essentials.jar" dest="${env.LIB}/Essentials.jar" skipexisting="true" />
<get src="http://palmergames.com/libs/CraftIRC.jar" dest="${env.LIB}/CraftIRC.jar" skipexisting="true" />
<get src="http://palmergames.com/libs/dynmap-api.jar" dest="${env.LIB}/dynmap-api.jar" skipexisting="true" />
<get src="http://palmergames.com/libs/HeroicDeath.jar" dest="${env.LIB}/HeroicDeath.jar" skipexisting="true" />
</target>
<target name="compile" depends="download">
<!-- Compile the java code -->
<javac srcdir="src" destdir="${build}" includeantruntime="false" target="1.6" source="1.6" debug="true">
<classpath>
<pathelement location="${env.LIB}/bukkit.jar" />
<pathelement location="${env.LIB}/Towny.jar" />
<pathelement location="${env.LIB}/Essentials.jar" />
<pathelement location="${env.LIB}/CraftIRC.jar" />
<pathelement location="${env.LIB}/dynmap-api.jar" />
<pathelement location="${env.LIB}/HeroicDeath.jar" />
</classpath>
</javac>
</target>
<target name="jar" depends="compile">
<replace file="./src/plugin.yml" token="{BUILD_VER}" value="${env.TOWNYCHAT_BUILD_VER}"/>
<!-- Build the jar file -->
<jar basedir="${build}" destfile="${env.LIB}/TownyChat.jar">
<fileset dir="./src" includes="changelog.txt" />
<fileset dir="./src" includes="Channels.yml" />
<fileset dir="./src" includes="ChatConfig.yml" />
<fileset dir="./src" includes="plugin.yml" />
</jar>
</target>
</project>