Subversion Repository Public Repository

litesoft

Diff Revisions 172 vs 173 for /trunk/GWT_Sandbox/UIdesign/build.xml

Diff revisions: vs.
  @@ -1,10 +1,27 @@
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 - <project default="all" name="UIdesign">
3 -
4 - <property name="TheApp" value="UIdesign"/>
2 + <project default="all" basedir="." name="UIdesign">
5 3
6 4 <property name="TheAppXMLpath" value="com.test.uidesign.UIdesign"/>
7 5
6 + <property name="DevRootDir" value="../../.."/>
7 +
8 + <property name="LitesoftJavaDir" value="${DevRootDir}/litesoft/Java"/>
9 + <property name="zGlobalDir" value="${DevRootDir}/zGlobal"/>
10 + <property name="GWTsdk" value="${zGlobalDir}/GWT/gwt-2.2.0"/>
11 + <property name="GWTincubator" value="${zGlobalDir}/GWT/GWTincubator/gwt-incubator-20101117-r1766.jar"/>
12 +
13 + <property name="build.dir" value="build"/>
14 + <property name="webdir" value="${build.dir}/war"/>
15 + <property name="outputdir" value="${webdir}/WEB-INF/classes"/>
16 + <property name="gwt.output.dir" value="${build.dir}/gwtbuild"/>
17 +
18 + <target name="all" depends="clean, compile, gwtCompile, war"/>
19 +
20 +
21 +
22 + <property name="TheApp" value="${ant.project.name}"/>
23 +
24 +
8 25 <property name="LitesoftJavaDir" value="${basedir}/../../../litesoft/Java"/>
9 26
10 27 <property file="build.properties"/>
  @@ -18,12 +35,8 @@
18 35 -->
19 36
20 37 <dirname property="basedir" file="${ant.file}"/>
21 - <property name="webdir" value="${basedir}/build"/>
22 - <property name="outputdir" value="${webdir}/WEB-INF/classes"/>
23 38
24 39 <!-- Compiler options -->
25 - <property name="build.dir" value="build"/>
26 - <property name="gwt.output.dir" value="${build.dir}/gwtbuild"/>
27 40
28 41 <property name="junit.output.dir" value="build/junit"/>
29 42
  @@ -117,7 +130,7 @@
117 130 </path>
118 131
119 132 <path id="library.litesoftgwtcshomonyms.classpath">
120 - <pathelement location="${LitesoftJavaDir}/GWT/CShomonyms/LiteSoftGWTcsHomonyms.jar"/>
133 + <pathelement location="${LitesoftJavaDir}/libs/LiteSoft_csHomonyms.jar"/>
121 134 </path>
122 135
123 136 <path id="library.litesoftlogger.classpath">
  @@ -128,435 +141,12 @@
128 141
129 142 <!-- Module LiteSoftAnywhere -->
130 143
131 - <property name="litesoftanywhere.compiler.args" value="${compiler.args}"/>
132 -
133 - <property name="litesoftanywhere.output.dir" value="${build.dir}/production/LiteSoftAnywhere"/>
134 - <property name="litesoftanywhere.testoutput.dir" value="${build.dir}/test/LiteSoftAnywhere"/>
135 -
136 - <path id="litesoftanywhere.module.classpath">
137 - <path refid="library.litesoftlogger.classpath"/>
138 - <path refid="library.litesoftdeprecated.classpath"/>
139 - <pathelement location="${LitesoftJavaDir}/core/Anywhere/src"/>
140 - <path refid="library.junit.classpath"/>
141 - </path>
142 -
143 - <path id="litesoftanywhere.runtime.module.classpath">
144 - <pathelement location="${litesoftanywhere.output.dir}"/>
145 - <pathelement location="${litesoftanywhere.testoutput.dir}"/>
146 - <path refid="library.litesoftlogger.classpath"/>
147 - <path refid="library.litesoftdeprecated.classpath"/>
148 - <pathelement location="${LitesoftJavaDir}/core/Anywhere/src"/>
149 - <path refid="library.junit.classpath"/>
150 - </path>
151 -
152 -
153 - <patternset id="litesoftanywhere.excluded.from.module">
154 - <patternset refid="ignored.files"/>
155 - </patternset>
156 -
157 - <patternset id="litesoftanywhere.excluded.from.compilation">
158 - <patternset refid="litesoftanywhere.excluded.from.module"/>
159 - </patternset>
160 -
161 - <path id="litesoftanywhere.module.sourcepath">
162 - <dirset dir="${LitesoftJavaDir}/core/Anywhere">
163 - <include name="src"/>
164 - </dirset>
165 - </path>
166 -
167 -
168 - <target name="litesoftanywhere.compile.module" depends="litesoftanywhere.compile.module.production,litesoftanywhere.compile.module.tests"
169 - description="Compile module LiteSoftAnywhere"/>
170 -
171 - <target name="litesoftanywhere.compile.module.production" description="Compile module LiteSoftAnywhere; production classes">
172 - <mkdir dir="${litesoftanywhere.output.dir}"/>
173 - <javac destdir="${litesoftanywhere.output.dir}" includeantruntime="false" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true">
174 - <compilerarg line="${litesoftanywhere.compiler.args}"/>
175 - <classpath refid="litesoftanywhere.module.classpath"/>
176 - <src refid="litesoftanywhere.module.sourcepath"/>
177 - <patternset refid="litesoftanywhere.excluded.from.compilation"/>
178 - </javac>
179 -
180 - <copy todir="${litesoftanywhere.output.dir}">
181 - <fileset dir="${LitesoftJavaDir}/core/Anywhere/src">
182 - <patternset refid="compiler.resources"/>
183 - <type type="file"/>
184 - </fileset>
185 - </copy>
186 - </target>
187 -
188 - <target name="litesoftanywhere.compile.module.tests" depends="litesoftanywhere.compile.module.production"
189 - description="compile module LiteSoftAnywhere; test classes" unless="skip.tests"/>
190 -
191 - <target name="litesoftanywhere.clean.module" description="cleanup module">
192 - <delete dir="${litesoftanywhere.output.dir}"/>
193 - <delete dir="${litesoftanywhere.testoutput.dir}"/>
194 - </target>
195 -
196 -
197 144 <!-- Module LiteSoftClientGWT -->
198 145
199 - <dirname property="module.litesoftclientgwt.basedir" file="${ant.file}"/>
200 -
201 - <property name="litesoftclientgwt.compiler.args" value="${compiler.args}"/>
202 -
203 - <property name="litesoftclientgwt.output.dir" value="${build.dir}/production/LiteSoftClientGWT"/>
204 - <property name="litesoftclientgwt.testoutput.dir" value="${build.dir}/test/LiteSoftClientGWT"/>
205 -
206 - <path id="litesoftclientgwt.module.classpath">
207 - <path refid="library.litesoftlogger.classpath"/>
208 - <pathelement location="${litesoftanywhere.output.dir}"/>
209 - <pathelement location="${litesoftanywhere.testoutput.dir}"/>
210 - <path refid="library.litesoftdeprecated.classpath"/>
211 - <pathelement location="${LitesoftJavaDir}/GWT/Client/src"/>
212 - <pathelement location="${LitesoftJavaDir}/GWT/Dev/src"/>
213 - <path refid="library.litesoftgwtcshomonyms.classpath"/>
214 - <path refid="library.gwt_user.classpath"/>
215 - <path refid="library.gwt_incubator.classpath"/>
216 - </path>
217 -
218 - <path id="litesoftclientgwt.runtime.module.classpath">
219 - <pathelement location="${litesoftclientgwt.output.dir}"/>
220 - <pathelement location="${litesoftclientgwt.testoutput.dir}"/>
221 - <path refid="library.litesoftlogger.classpath"/>
222 - <path refid="litesoftanywhere.runtime.module.classpath"/>
223 - <path refid="library.litesoftdeprecated.classpath"/>
224 - <pathelement location="${LitesoftJavaDir}/GWT/Client/src"/>
225 - <pathelement location="${LitesoftJavaDir}/GWT/Dev/src"/>
226 - <path refid="library.litesoftgwtcshomonyms.classpath"/>
227 - <path refid="library.gwt_user.classpath"/>
228 - <path refid="library.gwt_incubator.classpath"/>
229 - </path>
230 -
231 -
232 - <patternset id="litesoftclientgwt.excluded.from.module">
233 - <patternset refid="ignored.files"/>
234 - </patternset>
235 -
236 - <patternset id="litesoftclientgwt.excluded.from.compilation">
237 - <patternset refid="litesoftclientgwt.excluded.from.module"/>
238 - </patternset>
239 -
240 - <path id="litesoftclientgwt.module.sourcepath">
241 - <dirset dir="${LitesoftJavaDir}/GWT/Client">
242 - <include name="src"/>
243 - </dirset>
244 - <dirset dir="${LitesoftJavaDir}/GWT/Dev">
245 - <include name="src"/>
246 - </dirset>
247 - </path>
248 -
249 -
250 - <target name="litesoftclientgwt.compile.module" depends="litesoftclientgwt.compile.module.production,litesoftclientgwt.compile.module.tests"
251 - description="Compile module LiteSoftClientGWT"/>
252 -
253 - <target name="litesoftclientgwt.compile.module.production" depends="litesoftanywhere.compile.module"
254 - description="Compile module LiteSoftClientGWT; production classes">
255 - <mkdir dir="${litesoftclientgwt.output.dir}"/>
256 - <javac destdir="${litesoftclientgwt.output.dir}" includeantruntime="false" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
257 - memorymaximumsize="${compiler.max.memory}" fork="true">
258 - <compilerarg line="${litesoftclientgwt.compiler.args}"/>
259 - <classpath refid="litesoftclientgwt.module.classpath"/>
260 - <src refid="litesoftclientgwt.module.sourcepath"/>
261 - <patternset refid="litesoftclientgwt.excluded.from.compilation"/>
262 - </javac>
263 -
264 - <copy todir="${litesoftclientgwt.output.dir}">
265 - <fileset dir="${LitesoftJavaDir}/GWT/Client/src">
266 - <patternset refid="compiler.resources"/>
267 - <type type="file"/>
268 - </fileset>
269 - <fileset dir="${LitesoftJavaDir}/GWT/Dev/src">
270 - <patternset refid="compiler.resources"/>
271 - <type type="file"/>
272 - </fileset>
273 - </copy>
274 - </target>
275 -
276 - <target name="litesoftclientgwt.compile.module.tests" depends="litesoftclientgwt.compile.module.production"
277 - description="compile module LiteSoftClientGWT; test classes" unless="skip.tests"/>
278 -
279 - <target name="litesoftclientgwt.clean.module" description="cleanup module">
280 - <delete dir="${litesoftclientgwt.output.dir}"/>
281 - <delete dir="${litesoftclientgwt.testoutput.dir}"/>
282 - </target>
283 -
284 -
285 146 <!-- Module LiteSoftServer -->
286 147
287 - <property name="litesoftserver.compiler.args" value="${compiler.args}"/>
288 -
289 - <property name="litesoftserver.output.dir" value="${build.dir}/production/LiteSoftServer"/>
290 - <property name="litesoftserver.testoutput.dir" value="${build.dir}/test/LiteSoftServer"/>
291 -
292 - <path id="litesoftserver.module.bootclasspath">
293 - <!-- Paths to be included in compilation bootclasspath -->
294 - </path>
295 -
296 - <path id="litesoftserver.module.classpath">
297 - <path refid="library.litesoftlogger.classpath"/>
298 - <path refid="library.litesoftdeprecated.classpath"/>
299 - <pathelement location="${litesoftanywhere.output.dir}"/>
300 - <pathelement location="${litesoftanywhere.testoutput.dir}"/>
301 - <path refid="library.junit.classpath"/>
302 - <path refid="library.servlet.classpath"/>
303 - <path refid="library.commonsupload.classpath"/>
304 - <path refid="library.pullparser.classpath"/>
305 - <pathelement location="${LitesoftJavaDir}/libs/hsqldb.jar"/>
306 - <pathelement location="${LitesoftJavaDir}/libs/postgresql-8.2-506.jdbc3.jar"/>
307 - <pathelement location="${LitesoftJavaDir}/libs/sqljdbc.jar"/>
308 - </path>
309 -
310 - <path id="litesoftserver.runtime.module.classpath">
311 - <pathelement location="${litesoftserver.output.dir}"/>
312 - <pathelement location="${litesoftserver.testoutput.dir}"/>
313 - <path refid="library.litesoftlogger.classpath"/>
314 - <path refid="library.litesoftdeprecated.classpath"/>
315 - <path refid="litesoftanywhere.runtime.module.classpath"/>
316 - <path refid="library.junit.classpath"/>
317 - <path refid="library.servlet.classpath"/>
318 - <path refid="library.commonsupload.classpath"/>
319 - <path refid="library.pullparser.classpath"/>
320 - <pathelement location="${LitesoftJavaDir}/libs/hsqldb.jar"/>
321 - <pathelement location="${LitesoftJavaDir}/libs/postgresql-8.2-506.jdbc3.jar"/>
322 - <pathelement location="${LitesoftJavaDir}/libs/sqljdbc.jar"/>
323 - </path>
324 -
325 -
326 - <patternset id="litesoftserver.excluded.from.module">
327 - <patternset refid="ignored.files"/>
328 - </patternset>
329 -
330 - <patternset id="litesoftserver.excluded.from.compilation">
331 - <patternset refid="litesoftserver.excluded.from.module"/>
332 - </patternset>
333 -
334 - <path id="litesoftserver.module.sourcepath">
335 - <dirset dir="${LitesoftJavaDir}/core/Server">
336 - <include name="src"/>
337 - </dirset>
338 - </path>
339 -
340 -
341 - <target name="litesoftserver.compile.module" depends="litesoftserver.compile.module.production,litesoftserver.compile.module.tests"
342 - description="Compile module LiteSoftServer"/>
343 -
344 - <target name="litesoftserver.compile.module.production" depends="litesoftanywhere.compile.module"
345 - description="Compile module LiteSoftServer; production classes">
346 - <mkdir dir="${litesoftserver.output.dir}"/>
347 - <javac destdir="${litesoftserver.output.dir}" includeantruntime="false" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
348 - memorymaximumsize="${compiler.max.memory}" fork="true">
349 - <compilerarg line="${litesoftserver.compiler.args}"/>
350 - <bootclasspath refid="litesoftserver.module.bootclasspath"/>
351 - <classpath refid="litesoftserver.module.classpath"/>
352 - <src refid="litesoftserver.module.sourcepath"/>
353 - <patternset refid="litesoftserver.excluded.from.compilation"/>
354 - </javac>
355 -
356 - <copy todir="${litesoftserver.output.dir}">
357 - <fileset dir="${LitesoftJavaDir}/core/Server/src">
358 - <patternset refid="compiler.resources"/>
359 - <type type="file"/>
360 - </fileset>
361 - </copy>
362 - </target>
363 -
364 - <target name="litesoftserver.compile.module.tests" depends="litesoftserver.compile.module.production"
365 - description="compile module LiteSoftServer; test classes" unless="skip.tests"/>
366 -
367 - <target name="litesoftserver.clean.module" description="cleanup module">
368 - <delete dir="${litesoftserver.output.dir}"/>
369 - <delete dir="${litesoftserver.testoutput.dir}"/>
370 - </target>
371 -
372 -
373 148 <!-- Module LiteSoftServerGWT -->
374 149
375 - <property name="litesoftservergwt.compiler.args" value="${compiler.args}"/>
376 -
377 - <property name="litesoftservergwt.output.dir" value="${build.dir}/production/LiteSoftServerGWT"/>
378 - <property name="litesoftservergwt.testoutput.dir" value="${build.dir}/test/LiteSoftServerGWT"/>
379 -
380 - <path id="litesoftservergwt.module.bootclasspath">
381 - <!-- Paths to be included in compilation bootclasspath -->
382 - </path>
383 -
384 - <path id="litesoftservergwt.module.classpath">
385 - <path refid="library.litesoftlogger.classpath"/>
386 - <path refid="library.litesoftdeprecated.classpath"/>
387 - <pathelement location="${litesoftanywhere.output.dir}"/>
388 - <pathelement location="${litesoftanywhere.testoutput.dir}"/>
389 - <pathelement location="${litesoftclientgwt.output.dir}"/>
390 - <pathelement location="${litesoftclientgwt.testoutput.dir}"/>
391 - <pathelement location="${litesoftserver.output.dir}"/>
392 - <pathelement location="${litesoftserver.testoutput.dir}"/>
393 - <path refid="library.junit.classpath"/>
394 - <path refid="library.litesoftgwtcshomonyms.classpath"/>
395 - <path refid="library.gwt_user.classpath"/>
396 - <path refid="library.gwt_incubator.classpath"/>
397 - </path>
398 -
399 - <path id="litesoftservergwt.runtime.module.classpath">
400 - <pathelement location="${litesoftservergwt.output.dir}"/>
401 - <pathelement location="${litesoftservergwt.testoutput.dir}"/>
402 - <path refid="library.litesoftlogger.classpath"/>
403 - <path refid="library.litesoftdeprecated.classpath"/>
404 - <path refid="litesoftanywhere.runtime.module.classpath"/>
405 - <path refid="litesoftclientgwt.runtime.module.classpath"/>
406 - <path refid="litesoftserver.runtime.module.classpath"/>
407 - <path refid="library.junit.classpath"/>
408 - <path refid="library.litesoftgwtcshomonyms.classpath"/>
409 - <path refid="library.gwt_user.classpath"/>
410 - <path refid="library.gwt_incubator.classpath"/>
411 - </path>
412 -
413 -
414 - <patternset id="litesoftservergwt.excluded.from.module">
415 - <patternset refid="ignored.files"/>
416 - </patternset>
417 -
418 - <patternset id="litesoftservergwt.excluded.from.compilation">
419 - <patternset refid="litesoftservergwt.excluded.from.module"/>
420 - </patternset>
421 -
422 - <path id="litesoftservergwt.module.sourcepath">
423 - <dirset dir="${LitesoftJavaDir}/GWT/Server">
424 - <include name="src"/>
425 - </dirset>
426 - </path>
427 -
428 -
429 - <target name="litesoftservergwt.compile.module" depends="litesoftservergwt.compile.module.production,litesoftservergwt.compile.module.tests"
430 - description="Compile module LiteSoftServerGWT"/>
431 -
432 - <target name="litesoftservergwt.compile.module.production"
433 - depends="litesoftanywhere.compile.module,litesoftclientgwt.compile.module,litesoftserver.compile.module"
434 - description="Compile module LiteSoftServerGWT; production classes">
435 - <mkdir dir="${litesoftservergwt.output.dir}"/>
436 - <javac destdir="${litesoftservergwt.output.dir}" includeantruntime="false" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
437 - memorymaximumsize="${compiler.max.memory}" fork="true">
438 - <compilerarg line="${litesoftservergwt.compiler.args}"/>
439 - <bootclasspath refid="litesoftservergwt.module.bootclasspath"/>
440 - <classpath refid="litesoftservergwt.module.classpath"/>
441 - <src refid="litesoftservergwt.module.sourcepath"/>
442 - <patternset refid="litesoftservergwt.excluded.from.compilation"/>
443 - </javac>
444 -
445 - <copy todir="${litesoftservergwt.output.dir}">
446 - <fileset dir="${LitesoftJavaDir}/GWT/Server/src">
447 - <patternset refid="compiler.resources"/>
448 - <type type="file"/>
449 - </fileset>
450 - </copy>
451 - </target>
452 -
453 - <target name="litesoftservergwt.compile.module.tests" depends="litesoftservergwt.compile.module.production"
454 - description="compile module LiteSoftServerGWT; test classes" unless="skip.tests"/>
455 -
456 - <target name="litesoftservergwt.clean.module" description="cleanup module">
457 - <delete dir="${litesoftservergwt.output.dir}"/>
458 - <delete dir="${litesoftservergwt.testoutput.dir}"/>
459 - </target>
460 -
461 -
462 - <!-- Module LiteSoftServerTests -->
463 -
464 - <property name="litesoftservertests.compiler.args" value="${compiler.args}"/>
465 -
466 - <property name="litesoftservertests.output.dir" value="${build.dir}/production/LiteSoftServerTests"/>
467 - <property name="litesoftservertests.testoutput.dir" value="${build.dir}/test/LiteSoftServerTests"/>
468 -
469 - <path id="litesoftservertests.module.bootclasspath">
470 - <!-- Paths to be included in compilation bootclasspath -->
471 - </path>
472 -
473 - <path id="litesoftservertests.module.classpath">
474 - <path refid="library.litesoftlogger.classpath"/>
475 - <path refid="library.litesoftdeprecated.classpath"/>
476 - <pathelement location="${litesoftanywhere.output.dir}"/>
477 - <pathelement location="${litesoftanywhere.testoutput.dir}"/>
478 - <pathelement location="${litesoftserver.output.dir}"/>
479 - <pathelement location="${litesoftserver.testoutput.dir}"/>
480 - <path refid="library.junit.classpath"/>
481 - <path refid="library.servlet.classpath"/>
482 - <path refid="library.commonsupload.classpath"/>
483 - <path refid="library.pullparser.classpath"/>
484 - <pathelement location="${LitesoftJavaDir}/libs/hsqldb.jar"/>
485 - <pathelement location="${LitesoftJavaDir}/libs/postgresql-8.2-506.jdbc3.jar"/>
486 - <pathelement location="${LitesoftJavaDir}/libs/sqljdbc.jar"/>
487 - </path>
488 -
489 - <path id="litesoftservertests.runtime.module.classpath">
490 - <pathelement location="${litesoftservertests.output.dir}"/>
491 - <pathelement location="${litesoftservertests.testoutput.dir}"/>
492 - <path refid="library.litesoftlogger.classpath"/>
493 - <path refid="library.litesoftdeprecated.classpath"/>
494 - <path refid="litesoftanywhere.runtime.module.classpath"/>
495 - <path refid="litesoftserver.runtime.module.classpath"/>
496 - <path refid="library.junit.classpath"/>
497 - <path refid="library.servlet.classpath"/>
498 - <path refid="library.commonsupload.classpath"/>
499 - <path refid="library.pullparser.classpath"/>
500 - <pathelement location="${LitesoftJavaDir}/libs/hsqldb.jar"/>
501 - <pathelement location="${LitesoftJavaDir}/libs/postgresql-8.2-506.jdbc3.jar"/>
502 - <pathelement location="${LitesoftJavaDir}/libs/sqljdbc.jar"/>
503 - </path>
504 -
505 -
506 - <patternset id="litesoftservertests.excluded.from.module">
507 - <patternset refid="ignored.files"/>
508 - </patternset>
509 -
510 - <patternset id="litesoftservertests.excluded.from.compilation">
511 - <patternset refid="litesoftservertests.excluded.from.module"/>
512 - </patternset>
513 -
514 - <path id="litesoftservertests.module.sourcepath">
515 - <dirset dir="${LitesoftJavaDir}/core/Anywhere">
516 - <include name="tests"/>
517 - </dirset>
518 - <dirset dir="${LitesoftJavaDir}/core/Server">
519 - <include name="tests"/>
520 - </dirset>
521 - </path>
522 -
523 -
524 - <target name="litesoftservertests.compile.module" depends="litesoftservertests.compile.module.production,litesoftservertests.compile.module.tests"
525 - description="Compile module LiteSoftServerTests"/>
526 -
527 - <target name="litesoftservertests.compile.module.production" depends="litesoftanywhere.compile.module,litesoftserver.compile.module"
528 - description="Compile module LiteSoftServerTests; production classes">
529 - <mkdir dir="${litesoftservertests.output.dir}"/>
530 - <javac destdir="${litesoftservertests.output.dir}" includeantruntime="false" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
531 - memorymaximumsize="${compiler.max.memory}" fork="true">
532 - <compilerarg line="${litesoftservertests.compiler.args}"/>
533 - <bootclasspath refid="litesoftservertests.module.bootclasspath"/>
534 - <classpath refid="litesoftservertests.module.classpath"/>
535 - <src refid="litesoftservertests.module.sourcepath"/>
536 - <patternset refid="litesoftservertests.excluded.from.compilation"/>
537 - </javac>
538 -
539 - <copy todir="${litesoftservertests.output.dir}">
540 - <fileset dir="${LitesoftJavaDir}/core/Anywhere/tests">
541 - <patternset refid="compiler.resources"/>
542 - <type type="file"/>
543 - </fileset>
544 - <fileset dir="${LitesoftJavaDir}/core/Server/tests">
545 - <patternset refid="compiler.resources"/>
546 - <type type="file"/>
547 - </fileset>
548 - </copy>
549 - </target>
550 -
551 - <target name="litesoftservertests.compile.module.tests" depends="litesoftservertests.compile.module.production"
552 - description="compile module LiteSoftServerTests; test classes" unless="skip.tests"/>
553 -
554 - <target name="litesoftservertests.clean.module" description="cleanup module">
555 - <delete dir="${litesoftservertests.output.dir}"/>
556 - <delete dir="${litesoftservertests.testoutput.dir}"/>
557 - </target>
558 -
559 -
560 150 <!-- Module TheApp -->
561 151
562 152 <property name="TheApp.compiler.args" value="${compiler.args}"/>