aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorohair <none@none>2009-11-11 11:17:51 -0800
committerohair <none@none>2009-11-11 11:17:51 -0800
commit45a3791723b76e5c0bd8fa227d92214d8c6fe277 (patch)
tree513f10bdac6f9d1b13a1d2437fe4815a53caf149 /build.xml
parentfc9f1b49c91c10d741e21bfe90f4d3841b631792 (diff)
downloadjdk8u_jaxp-45a3791723b76e5c0bd8fa227d92214d8c6fe277.tar.gz
6900341: jaxp/jaxws ant scripts using ant runtime in classpath, needs to be explicit
Reviewed-by: tbell
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 28831d6..2f26382 100644
--- a/build.xml
+++ b/build.xml
@@ -113,7 +113,10 @@
<!-- Build (compilation) of sources to class files. -->
<target name="build"
depends="init, -init-src-dirs, -build-prep">
- <javac fork="true"
+ <javac
+ includeAntRuntime="false"
+ classpath="${build.classes.dir}"
+ fork="true"
destdir="${build.classes.dir}"
memoryInitialSize="${javac.memoryInitialSize}"
memoryMaximumSize="${javac.memoryMaximumSize}"