root/java/sql-vyuka/nbproject/build-impl.xml @ 79:aa8c8f51b0cc

Revision 79:aa8c8f51b0cc, 57.3 KB (checked in by František Kučera <franta-hg@…>, 12 years ago)

drobnosti, netbeans, entity

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3        *** GENERATED FROM project.xml - DO NOT EDIT  ***
4        ***         EDIT ../build.xml INSTEAD         ***
5
6        For the purpose of easier reading the script
7        is divided into following sections:
8        - initialization
9        - compilation
10        - dist
11        - execution
12        - debugging
13        - javadoc
14        - junit compilation
15        - junit execution
16        - junit debugging
17        - cleanup
18
19        -->
20<project xmlns:webproject1="http://www.netbeans.org/ns/web-project/1" xmlns:webproject2="http://www.netbeans.org/ns/web-project/2" xmlns:webproject3="http://www.netbeans.org/ns/web-project/3" basedir=".." default="default" name="sql-vyuka-impl">
21    <import file="ant-deploy.xml"/>
22    <fail message="Please build using Ant 1.7.1 or higher.">
23        <condition>
24            <not>
25                <antversion atleast="1.7.1"/>
26            </not>
27        </condition>
28    </fail>
29    <target depends="dist,javadoc" description="Build whole project." name="default"/>
30    <!--
31                INITIALIZATION SECTION
32            -->
33    <target name="-pre-init">
34        <!-- Empty placeholder for easier customization. -->
35        <!-- You can override this target in the ../build.xml file. -->
36    </target>
37    <target depends="-pre-init" name="-init-private">
38        <property file="nbproject/private/private.properties"/>
39    </target>
40    <target depends="-pre-init,-init-private" name="-init-user">
41        <property file="${user.properties.file}"/>
42        <!-- The two properties below are usually overridden -->
43        <!-- by the active platform. Just a fallback. -->
44        <property name="default.javac.source" value="1.4"/>
45        <property name="default.javac.target" value="1.4"/>
46    </target>
47    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
48        <property file="nbproject/project.properties"/>
49    </target>
50    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" if="dist.ear.dir" name="-do-ear-init"/>
51    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
52        <condition property="have.tests">
53            <or>
54                <available file="${test.src.dir}"/>
55            </or>
56        </condition>
57        <condition property="have.sources">
58            <or>
59                <available file="${src.dir}"/>
60            </or>
61        </condition>
62        <condition property="netbeans.home+have.tests">
63            <and>
64                <isset property="netbeans.home"/>
65                <isset property="have.tests"/>
66            </and>
67        </condition>
68        <condition property="no.javadoc.preview">
69            <isfalse value="${javadoc.preview}"/>
70        </condition>
71        <property name="javac.compilerargs" value=""/>
72        <condition property="no.deps">
73            <and>
74                <istrue value="${no.dependencies}"/>
75            </and>
76        </condition>
77        <condition property="no.dist.ear.dir">
78            <not>
79                <isset property="dist.ear.dir"/>
80            </not>
81        </condition>
82        <property name="build.web.excludes" value="${build.classes.excludes}"/>
83        <condition property="do.compile.jsps">
84            <istrue value="${compile.jsps}"/>
85        </condition>
86        <condition property="do.debug.server">
87            <or>
88                <not>
89                    <isset property="debug.server"/>
90                </not>
91                <istrue value="${debug.server}"/>
92                <and>
93                    <not>
94                        <istrue value="${debug.server}"/>
95                    </not>
96                    <not>
97                        <istrue value="${debug.client}"/>
98                    </not>
99                </and>
100            </or>
101        </condition>
102        <condition property="do.debug.client">
103            <istrue value="${debug.client}"/>
104        </condition>
105        <condition property="do.display.browser">
106            <istrue value="${display.browser}"/>
107        </condition>
108        <condition property="do.display.browser.debug">
109            <and>
110                <isset property="do.display.browser"/>
111                <not>
112                    <isset property="do.debug.client"/>
113                </not>
114            </and>
115        </condition>
116        <available file="${conf.dir}/MANIFEST.MF" property="has.custom.manifest"/>
117        <available file="${persistence.xml.dir}/persistence.xml" property="has.persistence.xml"/>
118        <condition property="do.war.package.with.custom.manifest">
119            <isset property="has.custom.manifest"/>
120        </condition>
121        <condition property="do.war.package.without.custom.manifest">
122            <not>
123                <isset property="has.custom.manifest"/>
124            </not>
125        </condition>
126        <condition property="do.tmp.war.package.with.custom.manifest">
127            <and>
128                <isset property="has.custom.manifest"/>
129                <or>
130                    <isfalse value="${directory.deployment.supported}"/>
131                    <isset property="dist.ear.dir"/>
132                </or>
133            </and>
134        </condition>
135        <condition property="do.tmp.war.package.without.custom.manifest">
136            <and>
137                <not>
138                    <isset property="has.custom.manifest"/>
139                </not>
140                <or>
141                    <isfalse value="${directory.deployment.supported}"/>
142                    <isset property="dist.ear.dir"/>
143                </or>
144            </and>
145        </condition>
146        <condition property="do.tmp.war.package">
147            <or>
148                <isfalse value="${directory.deployment.supported}"/>
149                <isset property="dist.ear.dir"/>
150            </or>
151        </condition>
152        <property name="build.meta.inf.dir" value="${build.web.dir}/META-INF"/>
153        <condition else="" property="application.args.param" value="${application.args}">
154            <and>
155                <isset property="application.args"/>
156                <not>
157                    <equals arg1="${application.args}" arg2="" trim="true"/>
158                </not>
159            </and>
160        </condition>
161        <property name="source.encoding" value="${file.encoding}"/>
162        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
163            <and>
164                <isset property="javadoc.encoding"/>
165                <not>
166                    <equals arg1="${javadoc.encoding}" arg2=""/>
167                </not>
168            </and>
169        </condition>
170        <property name="javadoc.encoding.used" value="${source.encoding}"/>
171        <property name="includes" value="**"/>
172        <property name="excludes" value=""/>
173        <property name="runmain.jvmargs" value=""/>
174        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
175        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
176            <and>
177                <isset property="endorsed.classpath"/>
178                <length length="0" string="${endorsed.classpath}" when="greater"/>
179            </and>
180        </condition>
181        <condition else="false" property="jdkBug6558476">
182            <and>
183                <matches pattern="1\.[56]" string="${java.specification.version}"/>
184                <not>
185                    <os family="unix"/>
186                </not>
187            </and>
188        </condition>
189        <property name="javac.fork" value="${jdkBug6558476}"/>
190    </target>
191    <target depends="init" name="-init-cos" unless="deploy.on.save">
192        <condition property="deploy.on.save" value="true">
193            <or>
194                <istrue value="${j2ee.deploy.on.save}"/>
195                <istrue value="${j2ee.compile.on.save}"/>
196            </or>
197        </condition>
198    </target>
199    <target name="-post-init">
200        <!-- Empty placeholder for easier customization. -->
201        <!-- You can override this target in the ../build.xml file. -->
202    </target>
203    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
204        <fail unless="src.dir">Must set src.dir</fail>
205        <fail unless="test.src.dir">Must set test.src.dir</fail>
206        <fail unless="build.dir">Must set build.dir</fail>
207        <fail unless="build.web.dir">Must set build.web.dir</fail>
208        <fail unless="build.generated.dir">Must set build.generated.dir</fail>
209        <fail unless="dist.dir">Must set dist.dir</fail>
210        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
211        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
212        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
213        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
214        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
215        <fail unless="dist.war">Must set dist.war</fail>
216        <condition property="missing.j2ee.server.home">
217            <and>
218                <matches pattern="j2ee.server.home" string="${j2ee.platform.classpath}"/>
219                <not>
220                    <isset property="j2ee.server.home"/>
221                </not>
222            </and>
223        </condition>
224        <fail if="missing.j2ee.server.home">
225The Java EE server classpath is not correctly set up - server home directory is missing.
226Either open the project in the IDE and assign the server or setup the server classpath manually.
227For example like this:
228   ant -Dj2ee.server.home=&lt;app_server_installation_directory&gt;
229                </fail>
230        <fail unless="j2ee.platform.classpath">
231The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
232Either open the project in the IDE and assign the server or setup the server classpath manually.
233For example like this:
234   ant -Duser.properties.file=&lt;path_to_property_file&gt; (where you put the property "j2ee.platform.classpath" in a .properties file)
235or ant -Dj2ee.platform.classpath=&lt;server_classpath&gt; (where no properties file is used)
236                </fail>
237    </target>
238    <target name="-init-macrodef-property">
239        <macrodef name="property" uri="http://www.netbeans.org/ns/web-project/1">
240            <attribute name="name"/>
241            <attribute name="value"/>
242            <sequential>
243                <property name="@{name}" value="${@{value}}"/>
244            </sequential>
245        </macrodef>
246    </target>
247    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
248        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
249            <attribute default="${src.dir}" name="srcdir"/>
250            <attribute default="${build.classes.dir}" name="destdir"/>
251            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
252            <attribute default="${javac.processorpath}" name="processorpath"/>
253            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
254            <attribute default="${includes}" name="includes"/>
255            <attribute default="${excludes}" name="excludes"/>
256            <attribute default="${javac.debug}" name="debug"/>
257            <attribute default="${empty.dir}" name="gensrcdir"/>
258            <element name="customize" optional="true"/>
259            <sequential>
260                <property location="${build.dir}/empty" name="empty.dir"/>
261                <mkdir dir="${empty.dir}"/>
262                <mkdir dir="@{apgeneratedsrcdir}"/>
263                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
264                    <src>
265                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
266                            <include name="*"/>
267                        </dirset>
268                    </src>
269                    <classpath>
270                        <path path="@{classpath}"/>
271                    </classpath>
272                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
273                    <compilerarg line="${javac.compilerargs}"/>
274                    <compilerarg value="-processorpath"/>
275                    <compilerarg path="@{processorpath}:${empty.dir}"/>
276                    <compilerarg line="${ap.processors.internal}"/>
277                    <compilerarg value="-s"/>
278                    <compilerarg path="@{apgeneratedsrcdir}"/>
279                    <compilerarg line="${ap.proc.none.internal}"/>
280                    <customize/>
281                </javac>
282            </sequential>
283        </macrodef>
284    </target>
285    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
286        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
287            <attribute default="${src.dir}" name="srcdir"/>
288            <attribute default="${build.classes.dir}" name="destdir"/>
289            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
290            <attribute default="${javac.processorpath}" name="processorpath"/>
291            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
292            <attribute default="${includes}" name="includes"/>
293            <attribute default="${excludes}" name="excludes"/>
294            <attribute default="${javac.debug}" name="debug"/>
295            <attribute default="${empty.dir}" name="gensrcdir"/>
296            <element name="customize" optional="true"/>
297            <sequential>
298                <property location="${build.dir}/empty" name="empty.dir"/>
299                <mkdir dir="${empty.dir}"/>
300                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
301                    <src>
302                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
303                            <include name="*"/>
304                        </dirset>
305                    </src>
306                    <classpath>
307                        <path path="@{classpath}"/>
308                    </classpath>
309                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
310                    <compilerarg line="${javac.compilerargs}"/>
311                    <customize/>
312                </javac>
313            </sequential>
314        </macrodef>
315    </target>
316    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
317        <macrodef name="depend" uri="http://www.netbeans.org/ns/web-project/2">
318            <attribute default="${src.dir}" name="srcdir"/>
319            <attribute default="${build.classes.dir}" name="destdir"/>
320            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
321            <sequential>
322                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
323                    <classpath>
324                        <path path="@{classpath}"/>
325                    </classpath>
326                </depend>
327            </sequential>
328        </macrodef>
329        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/web-project/2">
330            <attribute default="${build.classes.dir}" name="destdir"/>
331            <sequential>
332                <fail unless="javac.includes">Must set javac.includes</fail>
333                <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
334                    <path>
335                        <filelist dir="@{destdir}" files="${javac.includes}"/>
336                    </path>
337                    <globmapper from="*.java" to="*.class"/>
338                </pathconvert>
339                <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
340                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
341                <delete>
342                    <files includesfile="${javac.includesfile.binary}"/>
343                </delete>
344                <delete file="${javac.includesfile.binary}"/>
345            </sequential>
346        </macrodef>
347    </target>
348    <target name="-init-macrodef-junit">
349        <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2">
350            <attribute default="${includes}" name="includes"/>
351            <attribute default="${excludes}" name="excludes"/>
352            <attribute default="**" name="testincludes"/>
353            <sequential>
354                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
355                    <batchtest todir="${build.test.results.dir}">
356                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
357                            <filename name="@{testincludes}"/>
358                        </fileset>
359                    </batchtest>
360                    <classpath>
361                        <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/>
362                    </classpath>
363                    <syspropertyset>
364                        <propertyref prefix="test-sys-prop."/>
365                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
366                    </syspropertyset>
367                    <formatter type="brief" usefile="false"/>
368                    <formatter type="xml"/>
369                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
370                    <jvmarg value="-ea"/>
371                    <jvmarg line="${runmain.jvmargs}"/>
372                </junit>
373            </sequential>
374        </macrodef>
375    </target>
376    <target name="-init-macrodef-java">
377        <macrodef name="java" uri="http://www.netbeans.org/ns/web-project/1">
378            <attribute default="${main.class}" name="classname"/>
379            <attribute default="${debug.classpath}" name="classpath"/>
380            <element name="customize" optional="true"/>
381            <sequential>
382                <java classname="@{classname}" fork="true">
383                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
384                    <jvmarg line="${runmain.jvmargs}"/>
385                    <classpath>
386                        <path path="@{classpath}:${j2ee.platform.classpath}"/>
387                    </classpath>
388                    <syspropertyset>
389                        <propertyref prefix="run-sys-prop."/>
390                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
391                    </syspropertyset>
392                    <customize/>
393                </java>
394            </sequential>
395        </macrodef>
396    </target>
397    <target name="-init-macrodef-nbjsdebug">
398        <macrodef name="nbjsdebugstart" uri="http://www.netbeans.org/ns/web-project/1">
399            <attribute default="${client.url}" name="webUrl"/>
400            <sequential>
401                <nbjsdebugstart urlPart="${client.urlPart}" webUrl="@{webUrl}"/>
402            </sequential>
403        </macrodef>
404    </target>
405    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
406        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/web-project/1">
407            <attribute default="${main.class}" name="name"/>
408            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
409            <sequential>
410                <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}">
411                    <classpath>
412                        <path path="@{classpath}"/>
413                    </classpath>
414                </nbjpdastart>
415            </sequential>
416        </macrodef>
417        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/web-project/1">
418            <attribute default="${build.classes.dir}" name="dir"/>
419            <sequential>
420                <nbjpdareload>
421                    <fileset dir="@{dir}" includes="${fix.classes}">
422                        <include name="${fix.includes}*.class"/>
423                    </fileset>
424                </nbjpdareload>
425            </sequential>
426        </macrodef>
427        <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1">
428            <sequential>
429                <nbjpdaappreloaded/>
430            </sequential>
431        </macrodef>
432    </target>
433    <target name="-init-debug-args">
434        <property name="version-output" value="java version &quot;${ant.java.version}"/>
435        <condition property="have-jdk-older-than-1.4">
436            <or>
437                <contains string="${version-output}" substring="java version &quot;1.0"/>
438                <contains string="${version-output}" substring="java version &quot;1.1"/>
439                <contains string="${version-output}" substring="java version &quot;1.2"/>
440                <contains string="${version-output}" substring="java version &quot;1.3"/>
441            </or>
442        </condition>
443        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
444            <istrue value="${have-jdk-older-than-1.4}"/>
445        </condition>
446        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
447            <os family="windows"/>
448        </condition>
449        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
450            <isset property="debug.transport"/>
451        </condition>
452    </target>
453    <target depends="-init-debug-args" name="-init-macrodef-debug">
454        <macrodef name="debug" uri="http://www.netbeans.org/ns/web-project/1">
455            <attribute default="${main.class}" name="classname"/>
456            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
457            <attribute default="${application.args.param}" name="args"/>
458            <element name="customize" optional="true"/>
459            <sequential>
460                <java classname="@{classname}" fork="true">
461                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
462                    <jvmarg line="${debug-args-line}"/>
463                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
464                    <jvmarg line="${runmain.jvmargs}"/>
465                    <classpath>
466                        <path path="@{classpath}"/>
467                    </classpath>
468                    <syspropertyset>
469                        <propertyref prefix="run-sys-prop."/>
470                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
471                    </syspropertyset>
472                    <arg line="@{args}"/>
473                    <customize/>
474                </java>
475            </sequential>
476        </macrodef>
477    </target>
478    <target name="-init-taskdefs">
479        <fail unless="libs.CopyLibs.classpath">
480The libs.CopyLibs.classpath property is not set up.
481This property must point to
482org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
483of NetBeans IDE installation and is usually located at
484&lt;netbeans_installation&gt;/java&lt;version&gt;/ant/extra folder.
485Either open the project in the IDE and make sure CopyLibs library
486exists or setup the property manually. For example like this:
487 ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
488                </fail>
489        <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
490    </target>
491    <target name="-init-ap-cmdline-properties">
492        <property name="annotation.processing.enabled" value="true"/>
493        <property name="annotation.processing.processors.list" value=""/>
494        <property name="annotation.processing.run.all.processors" value="true"/>
495        <property name="javac.processorpath" value="${javac.classpath}"/>
496        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
497        <condition property="ap.supported.internal" value="true">
498            <not>
499                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
500            </not>
501        </condition>
502    </target>
503    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
504        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
505            <isfalse value="${annotation.processing.run.all.processors}"/>
506        </condition>
507        <condition else="" property="ap.proc.none.internal" value="-proc:none">
508            <isfalse value="${annotation.processing.enabled}"/>
509        </condition>
510    </target>
511    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
512        <property name="ap.cmd.line.internal" value=""/>
513    </target>
514    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-check" name="profile-init"/>
515    <target name="-profile-pre-init">
516        <!-- Empty placeholder for easier customization. -->
517        <!-- You can override this target in the ../build.xml file. -->
518    </target>
519    <target name="-profile-post-init">
520        <!-- Empty placeholder for easier customization. -->
521        <!-- You can override this target in the ../build.xml file. -->
522    </target>
523    <target depends="-profile-pre-init, init, -profile-post-init" name="-profile-init-check">
524        <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
525        <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
526    </target>
527    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-java,-init-macrodef-nbjpda,-init-macrodef-nbjsdebug,-init-macrodef-debug,-init-taskdefs,-init-ap-cmdline" name="init"/>
528    <!--
529                COMPILATION SECTION
530            -->
531    <target depends="init" if="no.dist.ear.dir" name="deps-module-jar" unless="no.deps">
532        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
533            <property name="deploy.on.save" value="false"/>
534        </ant>
535    </target>
536    <target depends="init" if="dist.ear.dir" name="deps-ear-jar" unless="no.deps">
537        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
538            <property name="deploy.on.save" value="false"/>
539        </ant>
540    </target>
541    <target depends="init, deps-module-jar, deps-ear-jar" name="deps-jar" unless="no.deps"/>
542    <target depends="init,deps-jar" name="-pre-pre-compile">
543        <mkdir dir="${build.classes.dir}"/>
544    </target>
545    <target name="-pre-compile">
546        <!-- Empty placeholder for easier customization. -->
547        <!-- You can override this target in the ../build.xml file. -->
548    </target>
549    <target name="-copy-webdir">
550        <copy todir="${build.web.dir}">
551            <fileset dir="${web.docbase.dir}" excludes="${build.web.excludes},${excludes}" includes="${includes}"/>
552        </copy>
553        <copy todir="${build.web.dir}/WEB-INF">
554            <fileset dir="${webinf.dir}" excludes="${build.web.excludes}"/>
555        </copy>
556    </target>
557    <target depends="init, deps-jar, -pre-pre-compile, -pre-compile, -copy-manifest, -copy-persistence-xml, -copy-webdir, library-inclusion-in-archive,library-inclusion-in-manifest" if="have.sources" name="-do-compile">
558        <webproject2:javac destdir="${build.classes.dir}" gensrcdir="${build.generated.sources.dir}"/>
559        <copy todir="${build.classes.dir}">
560            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
561        </copy>
562    </target>
563    <target if="has.custom.manifest" name="-copy-manifest">
564        <mkdir dir="${build.meta.inf.dir}"/>
565        <copy todir="${build.meta.inf.dir}">
566            <fileset dir="${conf.dir}" includes="MANIFEST.MF"/>
567        </copy>
568    </target>
569    <target if="has.persistence.xml" name="-copy-persistence-xml">
570        <mkdir dir="${build.web.dir}/WEB-INF/classes/META-INF"/>
571        <copy todir="${build.web.dir}/WEB-INF/classes/META-INF">
572            <fileset dir="${persistence.xml.dir}" includes="persistence.xml"/>
573        </copy>
574    </target>
575    <target name="-post-compile">
576        <!-- Empty placeholder for easier customization. -->
577        <!-- You can override this target in the ../build.xml file. -->
578    </target>
579    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
580    <target name="-pre-compile-single">
581        <!-- Empty placeholder for easier customization. -->
582        <!-- You can override this target in the ../build.xml file. -->
583    </target>
584    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
585        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
586        <webproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/>
587        <copy todir="${build.classes.dir}">
588            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
589        </copy>
590    </target>
591    <target name="-post-compile-single">
592        <!-- Empty placeholder for easier customization. -->
593        <!-- You can override this target in the ../build.xml file. -->
594    </target>
595    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
596    <property name="jspc.schemas" value="/resources/schemas/"/>
597    <property name="jspc.dtds" value="/resources/dtds/"/>
598    <target depends="compile" description="Test compile JSP pages to expose compilation errors." if="do.compile.jsps" name="compile-jsps">
599        <mkdir dir="${build.generated.dir}/src"/>
600        <java classname="org.netbeans.modules.web.project.ant.JspC" failonerror="true" fork="true">
601            <arg value="-uriroot"/>
602            <arg file="${basedir}/${build.web.dir}"/>
603            <arg value="-d"/>
604            <arg file="${basedir}/${build.generated.dir}/src"/>
605            <arg value="-die1"/>
606            <arg value="-schemas ${jspc.schemas}"/>
607            <arg value="-dtds ${jspc.dtds}"/>
608            <arg value="-compilerSourceVM ${javac.source}"/>
609            <arg value="-compilerTargetVM ${javac.target}"/>
610            <arg value="-javaEncoding ${source.encoding}"/>
611            <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/>
612            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
613        </java>
614        <mkdir dir="${build.generated.dir}/classes"/>
615        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"/>
616    </target>
617    <target depends="compile" if="jsp.includes" name="-do-compile-single-jsp">
618        <fail unless="javac.jsp.includes">Must select some files in the IDE or set javac.jsp.includes</fail>
619        <mkdir dir="${build.generated.dir}/src"/>
620        <java classname="org.netbeans.modules.web.project.ant.JspCSingle" failonerror="true" fork="true">
621            <arg value="-uriroot"/>
622            <arg file="${basedir}/${build.web.dir}"/>
623            <arg value="-d"/>
624            <arg file="${basedir}/${build.generated.dir}/src"/>
625            <arg value="-die1"/>
626            <arg value="-schemas ${jspc.schemas}"/>
627            <arg value="-dtds ${jspc.dtds}"/>
628            <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/>
629            <arg value="-jspc.files"/>
630            <arg path="${jsp.includes}"/>
631            <arg value="-compilerSourceVM ${javac.source}"/>
632            <arg value="-compilerTargetVM ${javac.target}"/>
633            <arg value="-javaEncoding ${source.encoding}"/>
634            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
635        </java>
636        <mkdir dir="${build.generated.dir}/classes"/>
637        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src">
638            <customize>
639                <patternset includes="${javac.jsp.includes}"/>
640            </customize>
641        </webproject2:javac>
642    </target>
643    <target name="compile-single-jsp">
644        <fail unless="jsp.includes">Must select a file in the IDE or set jsp.includes</fail>
645        <antcall target="-do-compile-single-jsp"/>
646    </target>
647    <!--
648                DIST BUILDING SECTION
649            -->
650    <target name="-pre-dist">
651        <!-- Empty placeholder for easier customization. -->
652        <!-- You can override this target in the ../build.xml file. -->
653    </target>
654    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.without.custom.manifest" name="-do-dist-without-manifest">
655        <dirname file="${dist.war}" property="dist.jar.dir"/>
656        <mkdir dir="${dist.jar.dir}"/>
657        <jar compress="${jar.compress}" jarfile="${dist.war}">
658            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/>
659        </jar>
660    </target>
661    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.with.custom.manifest" name="-do-dist-with-manifest">
662        <dirname file="${dist.war}" property="dist.jar.dir"/>
663        <mkdir dir="${dist.jar.dir}"/>
664        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
665            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/>
666        </jar>
667    </target>
668    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.without.custom.manifest" name="-do-tmp-dist-without-manifest">
669        <dirname file="${dist.war}" property="dist.jar.dir"/>
670        <mkdir dir="${dist.jar.dir}"/>
671        <jar compress="${jar.compress}" jarfile="${dist.war}">
672            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/>
673        </jar>
674    </target>
675    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.with.custom.manifest" name="-do-tmp-dist-with-manifest">
676        <dirname file="${dist.war}" property="dist.jar.dir"/>
677        <mkdir dir="${dist.jar.dir}"/>
678        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
679            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/>
680        </jar>
681    </target>
682    <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/>
683    <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest">
684        <copyfiles files="${reference.SuperDAO.jar}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
685        <mkdir dir="${build.web.dir}/META-INF"/>
686        <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/>
687    </target>
688    <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
689        <copyfiles files="${reference.SuperDAO.jar}" todir="${build.web.dir}/WEB-INF/lib"/>
690    </target>
691    <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib">
692        <delete dir="${build.web.dir}/WEB-INF/lib"/>
693    </target>
694    <target depends="init,-clean-webinf-lib,compile,compile-jsps,-pre-dist,library-inclusion-in-manifest" if="do.tmp.war.package" name="do-ear-dist">
695        <dirname file="${dist.ear.war}" property="dist.jar.dir"/>
696        <mkdir dir="${dist.jar.dir}"/>
697        <jar compress="${jar.compress}" jarfile="${dist.ear.war}" manifest="${build.web.dir}/META-INF/MANIFEST.MF">
698            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/>
699        </jar>
700    </target>
701    <target name="-post-dist">
702        <!-- Empty placeholder for easier customization. -->
703        <!-- You can override this target in the ../build.xml file. -->
704    </target>
705    <target depends="init,compile,-pre-dist,do-dist,-post-dist" description="Build distribution (WAR)." name="dist"/>
706    <target depends="init,-clean-webinf-lib,-init-cos,compile,-pre-dist,do-ear-dist,-post-dist" description="Build distribution (WAR) to be packaged into an EAR." name="dist-ear"/>
707    <!--
708                EXECUTION SECTION
709            -->
710    <target depends="run-deploy,run-display-browser" description="Deploy to server and show in browser." name="run"/>
711    <target name="-pre-run-deploy">
712        <!-- Empty placeholder for easier customization. -->
713        <!-- You can override this target in the ../build.xml file. -->
714    </target>
715    <target name="-post-run-deploy">
716        <!-- Empty placeholder for easier customization. -->
717        <!-- You can override this target in the ../build.xml file. -->
718    </target>
719    <target name="-pre-nbmodule-run-deploy">
720        <!-- Empty placeholder for easier customization. -->
721        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
722    </target>
723    <target name="-post-nbmodule-run-deploy">
724        <!-- Empty placeholder for easier customization. -->
725        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
726    </target>
727    <target name="-run-deploy-am">
728        <!-- Task to deploy to the Access Manager runtime. -->
729    </target>
730    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest,-pre-run-deploy,-pre-nbmodule-run-deploy,-run-deploy-nb,-init-deploy-ant,-deploy-ant,-run-deploy-am,-post-nbmodule-run-deploy,-post-run-deploy,-do-update-breakpoints" name="run-deploy"/>
731    <target if="netbeans.home" name="-run-deploy-nb">
732        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/>
733    </target>
734    <target name="-init-deploy-ant" unless="netbeans.home">
735        <property name="deploy.ant.archive" value="${dist.war}"/>
736        <property name="deploy.ant.docbase.dir" value="${web.docbase.dir}"/>
737        <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
738        <property name="deploy.ant.enabled" value="true"/>
739    </target>
740    <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
741    <target if="netbeans.home" name="-run-undeploy-nb">
742        <fail message="Undeploy is not supported from within the IDE"/>
743    </target>
744    <target depends="init,-pre-dist,dist,-post-dist" name="verify">
745        <nbverify file="${dist.war}"/>
746    </target>
747    <target depends="run-deploy,-init-display-browser,-display-browser-nb,-display-browser-cl" name="run-display-browser"/>
748    <target if="do.display.browser" name="-init-display-browser">
749        <condition property="do.display.browser.nb">
750            <isset property="netbeans.home"/>
751        </condition>
752        <condition property="do.display.browser.cl">
753            <isset property="deploy.ant.enabled"/>
754        </condition>
755    </target>
756    <target if="do.display.browser.nb" name="-display-browser-nb">
757        <nbbrowse url="${client.url}"/>
758    </target>
759    <target if="do.display.browser.cl" name="-get-browser" unless="browser">
760        <condition property="browser" value="rundll32">
761            <os family="windows"/>
762        </condition>
763        <condition else="" property="browser.args" value="url.dll,FileProtocolHandler">
764            <os family="windows"/>
765        </condition>
766        <condition property="browser" value="/usr/bin/open">
767            <os family="mac"/>
768        </condition>
769        <property environment="env"/>
770        <condition property="browser" value="${env.BROWSER}">
771            <isset property="env.BROWSER"/>
772        </condition>
773        <condition property="browser" value="/usr/bin/firefox">
774            <available file="/usr/bin/firefox"/>
775        </condition>
776        <condition property="browser" value="/usr/local/firefox/firefox">
777            <available file="/usr/local/firefox/firefox"/>
778        </condition>
779        <condition property="browser" value="/usr/bin/mozilla">
780            <available file="/usr/bin/mozilla"/>
781        </condition>
782        <condition property="browser" value="/usr/local/mozilla/mozilla">
783            <available file="/usr/local/mozilla/mozilla"/>
784        </condition>
785        <condition property="browser" value="/usr/sfw/lib/firefox/firefox">
786            <available file="/usr/sfw/lib/firefox/firefox"/>
787        </condition>
788        <condition property="browser" value="/opt/csw/bin/firefox">
789            <available file="/opt/csw/bin/firefox"/>
790        </condition>
791        <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla">
792            <available file="/usr/sfw/lib/mozilla/mozilla"/>
793        </condition>
794        <condition property="browser" value="/opt/csw/bin/mozilla">
795            <available file="/opt/csw/bin/mozilla"/>
796        </condition>
797    </target>
798    <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl">
799        <fail unless="browser">
800                    Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
801                </fail>
802        <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/>
803        <echo>Launching ${browse.url}</echo>
804        <exec executable="${browser}" spawn="true">
805            <arg line="${browser.args} ${browse.url}"/>
806        </exec>
807    </target>
808    <target depends="init,-init-cos,compile-single" name="run-main">
809        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
810        <webproject1:java classname="${run.class}"/>
811    </target>
812    <target depends="init,compile-test-single,-pre-test-run-single" name="run-test-with-main">
813        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
814        <webproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
815    </target>
816    <target depends="init" if="netbeans.home" name="-do-update-breakpoints">
817        <webproject1:nbjpdaappreloaded/>
818    </target>
819    <!--
820                DEBUGGING SECTION
821            -->
822    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest" description="Debug project in IDE." if="netbeans.home" name="debug">
823        <nbstartserver debugmode="true"/>
824        <antcall target="connect-debugger"/>
825        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="true" forceRedeploy="true"/>
826        <antcall target="debug-display-browser"/>
827        <antcall target="connect-client-debugger"/>
828    </target>
829    <target if="do.debug.server" name="connect-debugger" unless="is.debugged">
830        <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
831            <classpath>
832                <path path="${debug.classpath}:${j2ee.platform.classpath}"/>
833            </classpath>
834            <sourcepath>
835                <path path="${web.docbase.dir}"/>
836            </sourcepath>
837        </nbjpdaconnect>
838    </target>
839    <target if="do.display.browser.debug" name="debug-display-browser">
840        <nbbrowse url="${client.url}"/>
841    </target>
842    <target if="do.debug.client" name="connect-client-debugger">
843        <webproject1:nbjsdebugstart webUrl="${client.url}"/>
844    </target>
845    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
846        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
847        <webproject1:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
848    </target>
849    <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
850    <target depends="init,compile,compile-jsps,-do-compile-single-jsp,debug" if="netbeans.home" name="debug-single"/>
851    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
852        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
853    </target>
854    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
855        <webproject1:nbjpdastart name="${debug.class}"/>
856    </target>
857    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
858        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
859        <webproject1:debug classname="${debug.class}"/>
860    </target>
861    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/>
862    <target depends="init" name="-pre-debug-fix">
863        <fail unless="fix.includes">Must set fix.includes</fail>
864        <property name="javac.includes" value="${fix.includes}.java"/>
865    </target>
866    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
867        <webproject1:nbjpdareload/>
868    </target>
869    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
870    <!--
871            =================
872            PROFILING SECTION
873            =================
874            -->
875    <target description="Profile a J2EE project in the IDE." name="profile">
876        <condition else="start-profiled-server" property="profiler.startserver.target" value="start-profiled-server-extraargs">
877            <isset property="profiler.info.jvmargs.extra"/>
878        </condition>
879        <antcall target="${profiler.startserver.target}"/>
880        <antcall target="run"/>
881        <antcall target="start-loadgen"/>
882    </target>
883    <target name="start-profiled-server">
884        <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}">
885            <jvmarg value="${profiler.info.jvmargs.agent}"/>
886            <jvmarg value="${profiler.j2ee.agentID}"/>
887        </nbstartprofiledserver>
888    </target>
889    <target name="start-profiled-server-extraargs">
890        <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}">
891            <jvmarg value="${profiler.info.jvmargs.extra}"/>
892            <jvmarg value="${profiler.info.jvmargs.agent}"/>
893            <jvmarg value="${profiler.j2ee.agentID}"/>
894        </nbstartprofiledserver>
895    </target>
896    <target if="profiler.loadgen.path" name="start-loadgen">
897        <loadgenstart path="${profiler.loadgen.path}"/>
898    </target>
899    <!--
900                JAVADOC SECTION
901            -->
902    <target depends="init" if="have.sources" name="javadoc-build">
903        <mkdir dir="${dist.javadoc.dir}"/>
904        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
905            <classpath>
906                <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
907            </classpath>
908            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
909                <filename name="**/*.java"/>
910            </fileset>
911            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
912                <include name="**/*.java"/>
913            </fileset>
914        </javadoc>
915        <copy todir="${dist.javadoc.dir}">
916            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
917                <filename name="**/doc-files/**"/>
918            </fileset>
919            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
920                <include name="**/doc-files/**"/>
921            </fileset>
922        </copy>
923    </target>
924    <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview">
925        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
926    </target>
927    <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
928    <!--
929               
930                JUNIT COMPILATION SECTION
931            -->
932    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
933        <mkdir dir="${build.test.classes.dir}"/>
934        <property name="j2ee.platform.embeddableejb.classpath" value=""/>
935    </target>
936    <target name="-pre-compile-test">
937        <!-- Empty placeholder for easier customization. -->
938        <!-- You can override this target in the ../build.xml file. -->
939    </target>
940    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
941        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
942        <copy todir="${build.test.classes.dir}">
943            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
944        </copy>
945    </target>
946    <target name="-post-compile-test">
947        <!-- Empty placeholder for easier customization. -->
948        <!-- You can override this target in the ../build.xml file. -->
949    </target>
950    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
951    <target name="-pre-compile-test-single">
952        <!-- Empty placeholder for easier customization. -->
953        <!-- You can override this target in the ../build.xml file. -->
954    </target>
955    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
956        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
957        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" srcdir="${test.src.dir}"/>
958        <copy todir="${build.test.classes.dir}">
959            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
960        </copy>
961    </target>
962    <target name="-post-compile-test-single">
963        <!-- Empty placeholder for easier customization. -->
964        <!-- You can override this target in the ../build.xml file. -->
965    </target>
966    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
967    <!--
968               
969                JUNIT EXECUTION SECTION
970            -->
971    <target depends="init" if="have.tests" name="-pre-test-run">
972        <mkdir dir="${build.test.results.dir}"/>
973    </target>
974    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
975        <webproject2:junit testincludes="**/*Test.java"/>
976    </target>
977    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
978        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
979    </target>
980    <target depends="init" if="have.tests" name="test-report"/>
981    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
982    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
983    <target depends="init" if="have.tests" name="-pre-test-run-single">
984        <mkdir dir="${build.test.results.dir}"/>
985    </target>
986    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
987        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
988        <webproject2:junit excludes="" includes="${test.includes}"/>
989    </target>
990    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
991        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
992    </target>
993    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
994    <!--
995               
996                JUNIT DEBUGGING SECTION
997            -->
998    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
999        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
1000        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
1001        <delete file="${test.report.file}"/>
1002        <!-- must exist, otherwise the XML formatter would fail -->
1003        <mkdir dir="${build.test.results.dir}"/>
1004        <webproject1:debug args="${test.class}" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}:${j2ee.platform.embeddableejb.classpath}">
1005            <customize>
1006                <arg value="showoutput=true"/>
1007                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
1008                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
1009            </customize>
1010        </webproject1:debug>
1011    </target>
1012    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
1013        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
1014    </target>
1015    <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
1016    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
1017        <webproject1:nbjpdareload dir="${build.test.classes.dir}"/>
1018    </target>
1019    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
1020    <!--
1021        =========================
1022        TESTS PROFILING  SECTION
1023        =========================
1024        -->
1025    <target depends="profile-init,compile-test-single" if="netbeans.home" name="profile-test-single">
1026        <nbprofiledirect>
1027            <classpath>
1028                <path path="${run.test.classpath}"/>
1029                <path path="${j2ee.platform.classpath}"/>
1030            </classpath>
1031        </nbprofiledirect>
1032        <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
1033            <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
1034            <jvmarg value="${profiler.info.jvmargs.agent}"/>
1035            <jvmarg line="${profiler.info.jvmargs}"/>
1036            <test name="${profile.class}"/>
1037            <classpath>
1038                <path path="${run.test.classpath}"/>
1039                <path path="${j2ee.platform.classpath}"/>
1040            </classpath>
1041            <syspropertyset>
1042                <propertyref prefix="test-sys-prop."/>
1043                <mapper from="test-sys-prop.*" to="*" type="glob"/>
1044            </syspropertyset>
1045            <formatter type="brief" usefile="false"/>
1046            <formatter type="xml"/>
1047        </junit>
1048    </target>
1049    <!--
1050               
1051                CLEANUP SECTION
1052            -->
1053    <target depends="init" name="deps-clean" unless="no.deps">
1054        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="clean"/>
1055    </target>
1056    <target depends="init" name="do-clean">
1057        <condition property="build.dir.to.clean" value="${build.web.dir}">
1058            <isset property="dist.ear.dir"/>
1059        </condition>
1060        <property name="build.dir.to.clean" value="${build.web.dir}"/>
1061        <delete includeEmptyDirs="true" quiet="true">
1062            <fileset dir="${build.dir.to.clean}/WEB-INF/lib"/>
1063        </delete>
1064        <delete dir="${build.dir}"/>
1065        <available file="${build.dir.to.clean}/WEB-INF/lib" property="status.clean-failed" type="dir"/>
1066        <delete dir="${dist.dir}"/>
1067    </target>
1068    <target depends="do-clean" if="status.clean-failed" name="check-clean">
1069        <echo message="Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. "/>
1070        <echo level="info" message="To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again."/>
1071    </target>
1072    <target depends="init" if="netbeans.home" name="undeploy-clean">
1073        <nbundeploy failOnError="false" startServer="false"/>
1074    </target>
1075    <target name="-post-clean">
1076        <!-- Empty placeholder for easier customization. -->
1077        <!-- You can override this target in the ../build.xml file. -->
1078    </target>
1079    <target depends="init,undeploy-clean,deps-clean,do-clean,check-clean,-post-clean" description="Clean build products." name="clean"/>
1080    <target depends="clean" description="Clean build products." name="clean-ear"/>
1081</project>
Note: See TracBrowser for help on using the browser.