mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-05 02:10:10 +01:00
45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<project name="Citizens" default="dist" basedir=".">
|
|
<description>
|
|
Build file used for testing purposes
|
|
</description>
|
|
<!-- set global properties for this build -->
|
|
<property name="src" location="src" />
|
|
<property name="build" location="build" />
|
|
<property name="lib" location="lib" />
|
|
<target name="init">
|
|
<!-- Create neccesary folders -->
|
|
<mkdir dir="${build}" />
|
|
</target>
|
|
|
|
<!-- Compile the code -->
|
|
<target name="dist" depends="init" description="compile the source">
|
|
<javac srcdir="${src}" destdir="${build}" debug="on" debuglevel="lines,vars,source" includeantruntime="false" encoding="Cp1252">
|
|
<classpath>
|
|
<pathelement path="${lib}" />
|
|
<pathelement location="${lib}/bukkit-1.1-R5-SNAPSHOT.jar" />
|
|
<pathelement location="${lib}/craftbukkit-1.1-R5-SNAPSHOT.jar" />
|
|
<pathelement location="${lib}/CitizensAPI.jar" />
|
|
<pathelement location="${lib}/hamcrest.jar" />
|
|
<pathelement location="${lib}/junit-dep-4.10.jar" />
|
|
<pathelement location="${lib}/hamcrest-library-1.2.1.jar" />
|
|
<pathelement location="${lib}/hamcrest-core-1.2.1.jar" />
|
|
<fileset dir="lib">
|
|
<include name="CitizensAPI.jar" />
|
|
</fileset>
|
|
</classpath>
|
|
</javac>
|
|
<antcall target="distcore" />
|
|
</target>
|
|
|
|
<!-- Generate the jars -->
|
|
<target name="distcore" description="generate the distribution">
|
|
<jar jarfile="Citizens.jar" basedir="${build}" encoding="Cp1252">
|
|
<zipfileset dir="." includes="*.yml" />
|
|
</jar>
|
|
</target>
|
|
|
|
<target name="clean" description="clean up">
|
|
<!-- Delete the ${build} directory trees -->
|
|
<delete dir="${build}" />
|
|
</target>
|
|
</project> |