|
94 | 94 | <target name="compile.app" description="Compile Application source files" depends="dependencies"> |
95 | 95 | <mkdir dir="${dir.build.server-java.app}"/> |
96 | 96 | <javac srcdir="${dir.src.server-java.app}" destdir="${dir.build.server-java.app}" |
97 | | - debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}"> |
| 97 | + debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}" |
| 98 | + includeantruntime="false"> |
98 | 99 | <classpath> |
99 | 100 | <pathelement path="${echo3.app.lib.jar}"/> |
100 | 101 | </classpath> |
|
115 | 116 | <target name="test.compile.app" depends="dist.app"> |
116 | 117 | <mkdir dir="${dir.build.server-java.app-test}"/> |
117 | 118 | <javac srcdir="${dir.src.server-java.app-test}" destdir="${dir.build.server-java.app-test}" |
118 | | - debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}"> |
| 119 | + debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}" |
| 120 | + includeantruntime="false"> |
119 | 121 | <classpath> |
120 | 122 | <pathelement path="${dir.dist.lib}/${jarfile.extras.app}"/> |
121 | 123 | <pathelement path="${echo3.app.lib.jar}"/> |
|
169 | 171 | <target name="compile.webcontainer.impl" depends="verify.servlet.api, compile.app"> |
170 | 172 | <mkdir dir="${dir.build.server-java.webcontainer}"/> |
171 | 173 | <javac srcdir="${dir.src.server-java.webcontainer}" destdir="${dir.build.server-java.webcontainer}" |
172 | | - debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}"> |
| 174 | + debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}" |
| 175 | + includeantruntime="false"> |
173 | 176 | <classpath> |
174 | 177 | <pathelement path="${dir.build.server-java.app}"/> |
175 | 178 | <pathelement path="${echo3.webcontainer.lib.jar}"/> |
|
213 | 216 | <fileset dir="${dir.src.server-java.test-ia.htdocs}"/> |
214 | 217 | </copy> |
215 | 218 | <javac srcdir="${dir.src.server-java.test-ia.lib}" destdir="${dir.build.server-java.testapp}/WEB-INF/classes" |
216 | | - debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}"> |
| 219 | + debug="${debug}" deprecation="yes" source="${ant.build.javac.source}" target="${ant.build.javac.target}" |
| 220 | + includeantruntime="false"> |
217 | 221 | <classpath> |
218 | 222 | <pathelement path="${servlet.lib.jar}"/> |
219 | 223 | <pathelement path="${dir.dist.lib}/${jarfile.extras.app}"/> |
|
0 commit comments