summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2013-12-04 10:28:57 +0200
committerTzafrir Cohen <tzafrir@cohens.org.il>2013-12-04 10:28:57 +0200
commitf189183937327e514eb21504b524076588fba3b3 (patch)
tree6d608ee96d53ea35b97dd287ae7ceda59cd9b462 /build.xml
parentd250404b79f618ed8fbeacee44609a54bc152008 (diff)
ant: includeantruntime
A workaround for a misfeature of Ant 1.8
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 090e798..d43c5e9 100644
--- a/build.xml
+++ b/build.xml
@@ -17,7 +17,7 @@
<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
- <javac srcdir="${src}" destdir="${build}"/>
+ <javac srcdir="${src}" destdir="${build}" includeantruntime="false"/>
</target>
<target name="dist" depends="compile"
@@ -34,9 +34,7 @@
<java classname="Client/ChatClient"
fork="true"
failonerror="true"
- classpath="build"
- >
- </java>
+ classpath="build" />
</target>
<target name="run-server" depends="compile"