aboutsummaryrefslogtreecommitdiff
path: root/trunk/GameController/build.xml
diff options
context:
space:
mode:
authorCamil Staps2015-02-19 18:59:40 +0100
committerCamil Staps2015-02-19 18:59:40 +0100
commit83449e4e5201a7bc403dde8796fcfbf5bd730307 (patch)
treea53d0587acaccb7f9e2924eccfccbb7dbcc61eff /trunk/GameController/build.xml
parentMerge branch 'master' of https://github.com/camilstaps/Botleagues (diff)
directory structure
Diffstat (limited to 'trunk/GameController/build.xml')
-rw-r--r--trunk/GameController/build.xml38
1 files changed, 0 insertions, 38 deletions
diff --git a/trunk/GameController/build.xml b/trunk/GameController/build.xml
deleted file mode 100644
index 31b3d59..0000000
--- a/trunk/GameController/build.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<project name="GameController" default="dist" basedir=".">
- <description>
- Controls a Botleagues game
- </description>
- <!-- set global properties for this build -->
- <property name="src" location="src"/>
- <property name="build" location="bin"/>
- <property name="dist" location="dist"/>
-
- <target name="init">
- <!-- Create the time stamp -->
- <tstamp/>
- <!-- Create the build directory structure used by compile -->
- <mkdir dir="${build}"/>
- </target>
-
- <target name="compile" depends="init"
- description="compile the source " >
- <!-- Compile the java code from ${src} into ${build} -->
- <javac srcdir="${src}" destdir="${build}"/>
- </target>
-
- <target name="dist" depends="compile"
- description="generate the distribution" >
- <!-- Create the distribution directory -->
- <mkdir dir="${dist}/lib"/>
-
- <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
- <jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/>
- </target>
-
- <target name="clean"
- description="clean up" >
- <!-- Delete the ${build} and ${dist} directory trees -->
- <delete dir="${build}"/>
- <delete dir="${dist}"/>
- </target>
-</project>