Remove all ant build files

This commit is contained in:
aPunch 2012-03-20 13:14:06 -05:00
parent 09f977f194
commit 8df0d00b56
8 changed files with 8 additions and 40 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
/bin
/build
/target
.classpath
.project

View File

@ -0,0 +1,4 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding/<project>=UTF-8

View File

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

View File

@ -1,4 +1,3 @@
#Thu Feb 16 20:12:09 CST 2012
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources

View File

@ -1,38 +0,0 @@
<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.2.3-R0.2-SNAPSHOT.jar" />
<pathelement location="${lib}/CitizensAPI.jar" />
<pathelement location="${lib}/craftbukkit-1.2.3-R0.2-SNAPSHOT.jar" />
</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>

Binary file not shown.

Binary file not shown.