aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2013-04-07 15:23:48 +0000
committerIngo Bauersachs <ingo@jitsi.org>2013-04-07 15:23:48 +0000
commit1b2f91a6db08f2ee44f9b8ba747c4a02ae7361c5 (patch)
tree530d04d8965ebf6b303c326dd695a1526b29de6a /build.xml
parent69baa289fe6ae1f22d80ccb0a480e9b33c5e353b (diff)
downloadjitsi-1b2f91a6db08f2ee44f9b8ba747c4a02ae7361c5.zip
jitsi-1b2f91a6db08f2ee44f9b8ba747c4a02ae7361c5.tar.gz
jitsi-1b2f91a6db08f2ee44f9b8ba747c4a02ae7361c5.tar.bz2
Exclude Ant runtime libs from build classpath
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 1ac33aa..3e45bc6 100644
--- a/build.xml
+++ b/build.xml
@@ -279,6 +279,7 @@
<!--internal-target- compiles the entire project source tree -->
<javac classpathref="compile.class.path" debug="true"
deprecation="true" destdir="${dest}" nowarn="false"
+ includeantruntime="false"
source="1.5" target="1.5" memoryMaximumSize="400M" fork="true">
<src path="${src}"/>
<src path="${src2}"/>
@@ -291,6 +292,7 @@
notifying the user that a higher version of the jre is necessary.
-->
<javac classpathref="compile.class.path" debug="true"
+ includeantruntime="false"
deprecation="true" destdir="${dest}" nowarn="false"
source="1.4" target="1.4" memoryMaximumSize="400M" fork="true">
<src path="${src}"/>
@@ -461,7 +463,9 @@
<delete failonerror="false">
<fileset dir="${dest}" includes="net/java/sip/communicator/impl/version/*.class"/>
</delete>
- <javac classpathref="compile.class.path" destdir="${dest}" source="1.5" target="1.5">
+ <javac
+ classpathref="compile.class.path" includeantruntime="false"
+ destdir="${dest}" source="1.5" target="1.5">
<src path="${src}"/>
<include name="net/java/sip/communicator/impl/version/NightlyBuildID.java" />
<include name="net/java/sip/communicator/impl/version/VersionImpl.java" />