Added ant build file.

By: FrozenCow <frozencow@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-03 01:56:17 +01:00
parent 3dc584d5b8
commit 061cd7e964

41
paper-api/build.xml Normal file
View File

@ -0,0 +1,41 @@
<project name="Bukkit" default="dist" basedir=".">
<!-- Change the following two properties to the correct jar files -->
<property name="minecraftserver.jar" location="../../minecraft_server.jar"/>
<property name="minecraft" location="../../"/>
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="dist" location="dist"/>
<property name="lib" location="lib"/>
<target name="init">
<mkdir dir="${bin}"/>
<mkdir dir="${lib}"/>
<get src="http://repo2.maven.org/maven2/org/yaml/snakeyaml/1.7/snakeyaml-1.7.jar" dest="${lib}/snakeyaml-1.7.jar"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false">
<classpath>
<fileset dir="${lib}">
<include name="snakeyaml-1.7.jar"/>
</fileset>
</classpath>
</javac>
</target>
<target name="dist" depends="compile">
<mkdir dir="${dist}"/>
<jar jarfile="${dist}/Bukkit.jar" basedir="${bin}" />
</target>
<target name="deploy" depends="dist">
<copy file="${dist}/Bukkit.jar" todir="${minecraft}"/>
</target>
<target name="clean">
<delete dir="${bin}"/>
<delete dir="${dist}"/>
</target>
</project>