build.xml (e5e61ed1) build.xml (cc697cd0)
1<!--***********************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 88 unchanged lines hidden (view full) ---

97 <!-- ===================== Prepare Directories ========================= -->
98 <target name="prepare">
99 <mkdir dir="${jardir}"/>
100 </target>
101
102 <!-- ======================== Compile Classes ========================== -->
103 <target name="compile" depends="prepare, eval_environment">
104 <javac srcdir="com" destdir="${jardir}"
1<!--***********************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 88 unchanged lines hidden (view full) ---

97 <!-- ===================== Prepare Directories ========================= -->
98 <target name="prepare">
99 <mkdir dir="${jardir}"/>
100 </target>
101
102 <!-- ======================== Compile Classes ========================== -->
103 <target name="compile" depends="prepare, eval_environment">
104 <javac srcdir="com" destdir="${jardir}"
105 includes="**/*.java" classpathref="idlclasspath"
105 includes="**/*.java" classpathref="idlclasspath" includeantruntime="false"
106 debug="${debug}" optimize="${optimize}" deprecation="off">
107 <exclude name="**/provider/javascript/*.java" unless="with_rhino" />
108 <exclude name="**/provider/beanshell/*.java" unless="with_beanshell" />
109 <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/>
110 </javac>
111 <javac srcdir="Framework/" destdir="${jardir}"
112 includes="**/*.java" classpathref="idlclasspath" debug="${debug}"
106 debug="${debug}" optimize="${optimize}" deprecation="off">
107 <exclude name="**/provider/javascript/*.java" unless="with_rhino" />
108 <exclude name="**/provider/beanshell/*.java" unless="with_beanshell" />
109 <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/>
110 </javac>
111 <javac srcdir="Framework/" destdir="${jardir}"
112 includes="**/*.java" classpathref="idlclasspath" debug="${debug}"
113 optimize="${optimize}" deprecation="off">
113 optimize="${optimize}" deprecation="off" includeantruntime="false">
114 <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/>
115 </javac>
116 </target>
117
118 <target name="idesupport.compile" depends="compile, prepare">
119 <javac srcdir="." destdir="${jardir}"
120 debug="${debug}" deprecation="on">
121 <classpath refid="idesupport.class.path"/>

--- 179 unchanged lines hidden ---
114 <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/>
115 </javac>
116 </target>
117
118 <target name="idesupport.compile" depends="compile, prepare">
119 <javac srcdir="." destdir="${jardir}"
120 debug="${debug}" deprecation="on">
121 <classpath refid="idesupport.class.path"/>

--- 179 unchanged lines hidden ---