mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-11-12 12:15:07 -05:00
56 lines
1.4 KiB
XML
56 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project name="DataStore Core" default="build" basedir="../../">
|
||
|
<property name="base" location="Modules/DataStore" />
|
||
|
<property name="src" location="${base}/src" />
|
||
|
<property name="bin" location="${base}/bin" />
|
||
|
<property name="lib" location="${base}/lib" />
|
||
|
<property name="jar" value="${base}/DataStoreCore.jar" />
|
||
|
|
||
|
<fileset id="mopar" dir="GameServer">
|
||
|
<include name="moparclassic.jar" />
|
||
|
</fileset>
|
||
|
|
||
|
<fileset id="libraries" dir="${lib}">
|
||
|
<include name="*.jar" />
|
||
|
</fileset>
|
||
|
|
||
|
<fileset id="production-classes" dir="${bin}">
|
||
|
<include name="**/*.class" />
|
||
|
</fileset>
|
||
|
|
||
|
<path id="binary-path">
|
||
|
<pathelement path="${bin}" />
|
||
|
</path>
|
||
|
|
||
|
<path id="library-path">
|
||
|
<fileset refid="libraries" />
|
||
|
<fileset refid="mopar" />
|
||
|
</path>
|
||
|
|
||
|
<path id="master-path">
|
||
|
<path refid="binary-path" />
|
||
|
<path refid="library-path" />
|
||
|
</path>
|
||
|
|
||
|
<target name="init">
|
||
|
<mkdir dir="${bin}" />
|
||
|
<mkdir dir="${lib}" />
|
||
|
</target>
|
||
|
|
||
|
<target name="build" depends="init">
|
||
|
<javac destdir="${bin}" includeantruntime="false">
|
||
|
<src path="${src}" />
|
||
|
<classpath refid="library-path" />
|
||
|
</javac>
|
||
|
<jar destfile="${jar}">
|
||
|
<zipgroupfileset refid="libraries" />
|
||
|
<fileset refid="production-classes" />
|
||
|
</jar>
|
||
|
</target>
|
||
|
|
||
|
<target name="clean">
|
||
|
<delete dir="${bin}" />
|
||
|
<delete file="${jar}" />
|
||
|
</target>
|
||
|
</project>
|