root/java/sql-vyuka/nbproject/build-impl.xml @ 74:48066e753dd6

Revision 74:48066e753dd6, 45.6 KB (checked in by František Kučera <franta-hg@…>, 14 years ago)

Vlastní (stručné) chybové hlášky (404 a 500), IP adresa pro reverzní proxy (provizorně).

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            <length length="0" string="${endorsed.classpath}" when="greater"/>
177        </condition>
178    </target>
179    <target depends="init" name="-init-cos" unless="deploy.on.save">
180        <condition property="deploy.on.save" value="true">
181            <istrue value="${j2ee.deploy.on.save}"/>
182        </condition>
183    </target>
184    <target name="-post-init">
185        <!-- Empty placeholder for easier customization. -->
186        <!-- You can override this target in the ../build.xml file. -->
187    </target>
188    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
189        <fail unless="src.dir">Must set src.dir</fail>
190        <fail unless="test.src.dir">Must set test.src.dir</fail>
191        <fail unless="build.dir">Must set build.dir</fail>
192        <fail unless="build.web.dir">Must set build.web.dir</fail>
193        <fail unless="build.generated.dir">Must set build.generated.dir</fail>
194        <fail unless="dist.dir">Must set dist.dir</fail>
195        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
196        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
197        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
198        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
199        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
200        <fail unless="dist.war">Must set dist.war</fail>
201        <fail unless="j2ee.platform.classpath">
202The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
203Either open the project in the IDE and assign the server or setup the server classpath manually.
204For example like this:
205   ant -Duser.properties.file=&lt;path_to_property_file&gt; (where you put the property "j2ee.platform.classpath" in a .properties file)
206or ant -Dj2ee.platform.classpath=&lt;server_classpath&gt; (where no properties file is used)
207                </fail>
208    </target>
209    <target name="-init-macrodef-property">
210        <macrodef name="property" uri="http://www.netbeans.org/ns/web-project/1">
211            <attribute name="name"/>
212            <attribute name="value"/>
213            <sequential>
214                <property name="@{name}" value="${@{value}}"/>
215            </sequential>
216        </macrodef>
217    </target>
218    <target name="-init-macrodef-javac">
219        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
220            <attribute default="${src.dir}" name="srcdir"/>
221            <attribute default="${build.classes.dir}" name="destdir"/>
222            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
223            <attribute default="${includes}" name="includes"/>
224            <attribute default="${excludes}" name="excludes"/>
225            <attribute default="${javac.debug}" name="debug"/>
226            <attribute default="${empty.dir}" name="gensrcdir"/>
227            <element name="customize" optional="true"/>
228            <sequential>
229                <property location="${build.dir}/empty" name="empty.dir"/>
230                <mkdir dir="${empty.dir}"/>
231                <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}">
232                    <src>
233                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
234                            <include name="*"/>
235                        </dirset>
236                    </src>
237                    <classpath>
238                        <path path="@{classpath}"/>
239                    </classpath>
240                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
241                    <compilerarg line="${javac.compilerargs}"/>
242                    <customize/>
243                </javac>
244            </sequential>
245        </macrodef>
246    </target>
247    <target name="-init-macrodef-junit">
248        <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2">
249            <attribute default="${includes}" name="includes"/>
250            <attribute default="${excludes}" name="excludes"/>
251            <attribute default="**" name="testincludes"/>
252            <sequential>
253                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
254                    <batchtest todir="${build.test.results.dir}">
255                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
256                            <filename name="@{testincludes}"/>
257                        </fileset>
258                    </batchtest>
259                    <classpath>
260                        <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/>
261                    </classpath>
262                    <syspropertyset>
263                        <propertyref prefix="test-sys-prop."/>
264                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
265                    </syspropertyset>
266                    <formatter type="brief" usefile="false"/>
267                    <formatter type="xml"/>
268                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
269                    <jvmarg line="${runmain.jvmargs}"/>
270                </junit>
271            </sequential>
272        </macrodef>
273    </target>
274    <target name="-init-macrodef-java">
275        <macrodef name="java" uri="http://www.netbeans.org/ns/web-project/1">
276            <attribute default="${main.class}" name="classname"/>
277            <attribute default="${debug.classpath}" name="classpath"/>
278            <element name="customize" optional="true"/>
279            <sequential>
280                <java classname="@{classname}" fork="true">
281                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
282                    <jvmarg line="${runmain.jvmargs}"/>
283                    <classpath>
284                        <path path="@{classpath}:${j2ee.platform.classpath}"/>
285                    </classpath>
286                    <syspropertyset>
287                        <propertyref prefix="run-sys-prop."/>
288                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
289                    </syspropertyset>
290                    <customize/>
291                </java>
292            </sequential>
293        </macrodef>
294    </target>
295    <target name="-init-macrodef-nbjsdebug">
296        <macrodef name="nbjsdebugstart" uri="http://www.netbeans.org/ns/web-project/1">
297            <attribute default="${client.url}" name="webUrl"/>
298            <sequential>
299                <nbjsdebugstart urlPart="${client.urlPart}" webUrl="@{webUrl}"/>
300            </sequential>
301        </macrodef>
302    </target>
303    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
304        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/web-project/1">
305            <attribute default="${main.class}" name="name"/>
306            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
307            <sequential>
308                <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}">
309                    <classpath>
310                        <path path="@{classpath}"/>
311                    </classpath>
312                </nbjpdastart>
313            </sequential>
314        </macrodef>
315        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/web-project/1">
316            <attribute default="${build.classes.dir}" name="dir"/>
317            <sequential>
318                <nbjpdareload>
319                    <fileset dir="@{dir}" includes="${fix.classes}">
320                        <include name="${fix.includes}*.class"/>
321                    </fileset>
322                </nbjpdareload>
323            </sequential>
324        </macrodef>
325        <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1">
326            <sequential>
327                <nbjpdaappreloaded/>
328            </sequential>
329        </macrodef>
330    </target>
331    <target name="-init-debug-args">
332        <property name="version-output" value="java version &quot;${ant.java.version}"/>
333        <condition property="have-jdk-older-than-1.4">
334            <or>
335                <contains string="${version-output}" substring="java version &quot;1.0"/>
336                <contains string="${version-output}" substring="java version &quot;1.1"/>
337                <contains string="${version-output}" substring="java version &quot;1.2"/>
338                <contains string="${version-output}" substring="java version &quot;1.3"/>
339            </or>
340        </condition>
341        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
342            <istrue value="${have-jdk-older-than-1.4}"/>
343        </condition>
344        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
345            <os family="windows"/>
346        </condition>
347        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
348            <isset property="debug.transport"/>
349        </condition>
350    </target>
351    <target depends="-init-debug-args" name="-init-macrodef-debug">
352        <macrodef name="debug" uri="http://www.netbeans.org/ns/web-project/1">
353            <attribute default="${main.class}" name="classname"/>
354            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
355            <attribute default="${application.args.param}" name="args"/>
356            <element name="customize" optional="true"/>
357            <sequential>
358                <java classname="@{classname}" fork="true">
359                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
360                    <jvmarg line="${debug-args-line}"/>
361                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
362                    <jvmarg line="${runmain.jvmargs}"/>
363                    <classpath>
364                        <path path="@{classpath}"/>
365                    </classpath>
366                    <syspropertyset>
367                        <propertyref prefix="run-sys-prop."/>
368                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
369                    </syspropertyset>
370                    <arg line="@{args}"/>
371                    <customize/>
372                </java>
373            </sequential>
374        </macrodef>
375    </target>
376    <target name="-init-taskdefs">
377        <fail unless="libs.CopyLibs.classpath">
378The libs.CopyLibs.classpath property is not set up.
379This property must point to
380org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
381of NetBeans IDE installation and is usually located at
382&lt;netbeans_installation&gt;/java&lt;version&gt;/ant/extra folder.
383Either open the project in the IDE and make sure CopyLibs library
384exists or setup the property manually. For example like this:
385 ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
386                </fail>
387        <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
388    </target>
389    <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" name="init"/>
390    <!--
391                COMPILATION SECTION
392            -->
393    <target depends="init" if="no.dist.ear.dir" name="deps-module-jar" unless="no.deps">
394        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
395            <property name="deploy.on.save" value="false"/>
396        </ant>
397    </target>
398    <target depends="init" if="dist.ear.dir" name="deps-ear-jar" unless="no.deps">
399        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
400            <property name="deploy.on.save" value="false"/>
401        </ant>
402    </target>
403    <target depends="init, deps-module-jar, deps-ear-jar" name="deps-jar" unless="no.deps"/>
404    <target depends="init,deps-jar" name="-pre-pre-compile">
405        <mkdir dir="${build.classes.dir}"/>
406    </target>
407    <target name="-pre-compile">
408        <!-- Empty placeholder for easier customization. -->
409        <!-- You can override this target in the ../build.xml file. -->
410    </target>
411    <target name="-copy-webdir">
412        <copy todir="${build.web.dir}">
413            <fileset dir="${web.docbase.dir}" excludes="${build.web.excludes},${excludes}" includes="${includes}"/>
414        </copy>
415        <copy todir="${build.web.dir}/WEB-INF">
416            <fileset dir="${webinf.dir}" excludes="${build.web.excludes}"/>
417        </copy>
418    </target>
419    <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">
420        <webproject2:javac destdir="${build.classes.dir}" gensrcdir="${build.generated.sources.dir}"/>
421        <copy todir="${build.classes.dir}">
422            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
423        </copy>
424    </target>
425    <target if="has.custom.manifest" name="-copy-manifest">
426        <mkdir dir="${build.meta.inf.dir}"/>
427        <copy todir="${build.meta.inf.dir}">
428            <fileset dir="${conf.dir}" includes="MANIFEST.MF"/>
429        </copy>
430    </target>
431    <target if="has.persistence.xml" name="-copy-persistence-xml">
432        <mkdir dir="${build.web.dir}/WEB-INF/classes/META-INF"/>
433        <copy todir="${build.web.dir}/WEB-INF/classes/META-INF">
434            <fileset dir="${persistence.xml.dir}" includes="persistence.xml"/>
435        </copy>
436    </target>
437    <target name="-post-compile">
438        <!-- Empty placeholder for easier customization. -->
439        <!-- You can override this target in the ../build.xml file. -->
440    </target>
441    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
442    <target name="-pre-compile-single">
443        <!-- Empty placeholder for easier customization. -->
444        <!-- You can override this target in the ../build.xml file. -->
445    </target>
446    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
447        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
448        <webproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/>
449        <copy todir="${build.classes.dir}">
450            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
451        </copy>
452    </target>
453    <target name="-post-compile-single">
454        <!-- Empty placeholder for easier customization. -->
455        <!-- You can override this target in the ../build.xml file. -->
456    </target>
457    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
458    <target depends="compile" description="Test compile JSP pages to expose compilation errors." if="do.compile.jsps" name="compile-jsps">
459        <mkdir dir="${build.generated.dir}/src"/>
460        <java classname="org.netbeans.modules.web.project.ant.JspC" failonerror="true" fork="true">
461            <arg value="-uriroot"/>
462            <arg file="${basedir}/${build.web.dir}"/>
463            <arg value="-d"/>
464            <arg file="${basedir}/${build.generated.dir}/src"/>
465            <arg value="-die1"/>
466            <arg value="-compilerSourceVM ${javac.source}"/>
467            <arg value="-compilerTargetVM ${javac.target}"/>
468            <arg value="-javaEncoding ${source.encoding}"/>
469            <classpath path="${java.home}/../lib/tools.jar:${jspctask.classpath}:${jspcompilation.classpath}"/>
470        </java>
471        <mkdir dir="${build.generated.dir}/classes"/>
472        <webproject2:javac classpath="${j2ee.platform.classpath}:${build.classes.dir}:${jspcompilation.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"/>
473    </target>
474    <target depends="compile" if="jsp.includes" name="-do-compile-single-jsp">
475        <fail unless="javac.jsp.includes">Must select some files in the IDE or set javac.jsp.includes</fail>
476        <mkdir dir="${build.generated.dir}/src"/>
477        <java classname="org.netbeans.modules.web.project.ant.JspCSingle" failonerror="true" fork="true">
478            <arg value="-uriroot"/>
479            <arg file="${basedir}/${build.web.dir}"/>
480            <arg value="-d"/>
481            <arg file="${basedir}/${build.generated.dir}/src"/>
482            <arg value="-die1"/>
483            <arg value="-jspc.files"/>
484            <arg path="${jsp.includes}"/>
485            <arg value="-compilerSourceVM ${javac.source}"/>
486            <arg value="-compilerTargetVM ${javac.target}"/>
487            <arg value="-javaEncoding ${source.encoding}"/>
488            <classpath path="${java.home}/../lib/tools.jar:${jspctask.classpath}:${jspcompilation.classpath}"/>
489        </java>
490        <mkdir dir="${build.generated.dir}/classes"/>
491        <webproject2:javac classpath="${j2ee.platform.classpath}:${build.classes.dir}:${jspcompilation.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src">
492            <customize>
493                <patternset includes="${javac.jsp.includes}"/>
494            </customize>
495        </webproject2:javac>
496    </target>
497    <target name="compile-single-jsp">
498        <fail unless="jsp.includes">Must select a file in the IDE or set jsp.includes</fail>
499        <antcall target="-do-compile-single-jsp"/>
500    </target>
501    <!--
502                DIST BUILDING SECTION
503            -->
504    <target name="-pre-dist">
505        <!-- Empty placeholder for easier customization. -->
506        <!-- You can override this target in the ../build.xml file. -->
507    </target>
508    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.without.custom.manifest" name="-do-dist-without-manifest">
509        <dirname file="${dist.war}" property="dist.jar.dir"/>
510        <mkdir dir="${dist.jar.dir}"/>
511        <jar compress="${jar.compress}" jarfile="${dist.war}">
512            <fileset dir="${build.web.dir}"/>
513        </jar>
514    </target>
515    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.with.custom.manifest" name="-do-dist-with-manifest">
516        <dirname file="${dist.war}" property="dist.jar.dir"/>
517        <mkdir dir="${dist.jar.dir}"/>
518        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
519            <fileset dir="${build.web.dir}"/>
520        </jar>
521    </target>
522    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.without.custom.manifest" name="-do-tmp-dist-without-manifest">
523        <dirname file="${dist.war}" property="dist.jar.dir"/>
524        <mkdir dir="${dist.jar.dir}"/>
525        <jar compress="${jar.compress}" jarfile="${dist.war}">
526            <fileset dir="${build.web.dir}"/>
527        </jar>
528    </target>
529    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.with.custom.manifest" name="-do-tmp-dist-with-manifest">
530        <dirname file="${dist.war}" property="dist.jar.dir"/>
531        <mkdir dir="${dist.jar.dir}"/>
532        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
533            <fileset dir="${build.web.dir}"/>
534        </jar>
535    </target>
536    <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/>
537    <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest">
538        <copyfiles files="${reference.SuperDAO.jar}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
539        <mkdir dir="${build.web.dir}/META-INF"/>
540        <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/>
541    </target>
542    <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
543        <copyfiles files="${reference.SuperDAO.jar}" todir="${build.web.dir}/WEB-INF/lib"/>
544    </target>
545    <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib">
546        <delete dir="${build.web.dir}/WEB-INF/lib"/>
547    </target>
548    <target depends="init,-clean-webinf-lib,compile,compile-jsps,-pre-dist,library-inclusion-in-manifest" if="do.tmp.war.package" name="do-ear-dist">
549        <dirname file="${dist.ear.war}" property="dist.jar.dir"/>
550        <mkdir dir="${dist.jar.dir}"/>
551        <jar compress="${jar.compress}" jarfile="${dist.ear.war}" manifest="${build.web.dir}/META-INF/MANIFEST.MF">
552            <fileset dir="${build.web.dir}"/>
553        </jar>
554    </target>
555    <target name="-post-dist">
556        <!-- Empty placeholder for easier customization. -->
557        <!-- You can override this target in the ../build.xml file. -->
558    </target>
559    <target depends="init,compile,-pre-dist,do-dist,-post-dist" description="Build distribution (WAR)." name="dist"/>
560    <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"/>
561    <!--
562                EXECUTION SECTION
563            -->
564    <target depends="run-deploy,run-display-browser" description="Deploy to server and show in browser." name="run"/>
565    <target name="-pre-run-deploy">
566        <!-- Empty placeholder for easier customization. -->
567        <!-- You can override this target in the ../build.xml file. -->
568    </target>
569    <target name="-post-run-deploy">
570        <!-- Empty placeholder for easier customization. -->
571        <!-- You can override this target in the ../build.xml file. -->
572    </target>
573    <target name="-pre-nbmodule-run-deploy">
574        <!-- Empty placeholder for easier customization. -->
575        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
576    </target>
577    <target name="-post-nbmodule-run-deploy">
578        <!-- Empty placeholder for easier customization. -->
579        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
580    </target>
581    <target name="-run-deploy-am">
582        <!-- Task to deploy to the Access Manager runtime. -->
583    </target>
584    <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" name="run-deploy">
585        <nbjpdaappreloaded/>
586    </target>
587    <target if="netbeans.home" name="-run-deploy-nb">
588        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/>
589    </target>
590    <target name="-init-deploy-ant" unless="netbeans.home">
591        <property name="deploy.ant.archive" value="${dist.war}"/>
592        <property name="deploy.ant.docbase.dir" value="${web.docbase.dir}"/>
593        <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
594        <property name="deploy.ant.enabled" value="true"/>
595    </target>
596    <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
597    <target if="netbeans.home" name="-run-undeploy-nb">
598        <fail message="Undeploy is not supported from within the IDE"/>
599    </target>
600    <target depends="init,-pre-dist,dist,-post-dist" name="verify">
601        <nbverify file="${dist.war}"/>
602    </target>
603    <target depends="run-deploy,-init-display-browser,-display-browser-nb,-display-browser-cl" name="run-display-browser"/>
604    <target if="do.display.browser" name="-init-display-browser">
605        <condition property="do.display.browser.nb">
606            <isset property="netbeans.home"/>
607        </condition>
608        <condition property="do.display.browser.cl">
609            <isset property="deploy.ant.enabled"/>
610        </condition>
611    </target>
612    <target if="do.display.browser.nb" name="-display-browser-nb">
613        <nbbrowse url="${client.url}"/>
614    </target>
615    <target if="do.display.browser.cl" name="-get-browser" unless="browser">
616        <condition property="browser" value="rundll32">
617            <os family="windows"/>
618        </condition>
619        <condition else="" property="browser.args" value="url.dll,FileProtocolHandler">
620            <os family="windows"/>
621        </condition>
622        <condition property="browser" value="/usr/bin/open">
623            <os family="mac"/>
624        </condition>
625        <property environment="env"/>
626        <condition property="browser" value="${env.BROWSER}">
627            <isset property="env.BROWSER"/>
628        </condition>
629        <condition property="browser" value="/usr/bin/firefox">
630            <available file="/usr/bin/firefox"/>
631        </condition>
632        <condition property="browser" value="/usr/local/firefox/firefox">
633            <available file="/usr/local/firefox/firefox"/>
634        </condition>
635        <condition property="browser" value="/usr/bin/mozilla">
636            <available file="/usr/bin/mozilla"/>
637        </condition>
638        <condition property="browser" value="/usr/local/mozilla/mozilla">
639            <available file="/usr/local/mozilla/mozilla"/>
640        </condition>
641        <condition property="browser" value="/usr/sfw/lib/firefox/firefox">
642            <available file="/usr/sfw/lib/firefox/firefox"/>
643        </condition>
644        <condition property="browser" value="/opt/csw/bin/firefox">
645            <available file="/opt/csw/bin/firefox"/>
646        </condition>
647        <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla">
648            <available file="/usr/sfw/lib/mozilla/mozilla"/>
649        </condition>
650        <condition property="browser" value="/opt/csw/bin/mozilla">
651            <available file="/opt/csw/bin/mozilla"/>
652        </condition>
653    </target>
654    <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl">
655        <fail unless="browser">
656                    Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
657                </fail>
658        <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/>
659        <echo>Launching ${browse.url}</echo>
660        <exec executable="${browser}" spawn="true">
661            <arg line="${browser.args} ${browse.url}"/>
662        </exec>
663    </target>
664    <target depends="init,-init-cos,compile-single" name="run-main">
665        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
666        <webproject1:java classname="${run.class}"/>
667    </target>
668    <target depends="init,compile-test-single,-pre-test-run-single" name="run-test-with-main">
669        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
670        <webproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
671    </target>
672    <!--
673                DEBUGGING SECTION
674            -->
675    <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">
676        <nbstartserver debugmode="true"/>
677        <antcall target="connect-debugger"/>
678        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="true" forceRedeploy="true"/>
679        <antcall target="debug-display-browser"/>
680        <antcall target="connect-client-debugger"/>
681    </target>
682    <target if="do.debug.server" name="connect-debugger" unless="is.debugged">
683        <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
684            <classpath>
685                <path path="${debug.classpath}:${j2ee.platform.classpath}"/>
686            </classpath>
687            <sourcepath>
688                <path path="${web.docbase.dir}"/>
689            </sourcepath>
690        </nbjpdaconnect>
691    </target>
692    <target if="do.display.browser.debug" name="debug-display-browser">
693        <nbbrowse url="${client.url}"/>
694    </target>
695    <target if="do.debug.client" name="connect-client-debugger">
696        <webproject1:nbjsdebugstart webUrl="${client.url}"/>
697    </target>
698    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
699        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
700        <webproject1:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
701    </target>
702    <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
703    <target depends="init,compile,compile-jsps,-do-compile-single-jsp,debug" if="netbeans.home" name="debug-single"/>
704    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
705        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
706    </target>
707    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
708        <webproject1:nbjpdastart name="${debug.class}"/>
709    </target>
710    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
711        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
712        <webproject1:debug classname="${debug.class}"/>
713    </target>
714    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/>
715    <target depends="init" name="-pre-debug-fix">
716        <fail unless="fix.includes">Must set fix.includes</fail>
717        <property name="javac.includes" value="${fix.includes}.java"/>
718    </target>
719    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
720        <webproject1:nbjpdareload/>
721    </target>
722    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
723    <!--
724                JAVADOC SECTION
725            -->
726    <target depends="init" name="javadoc-build">
727        <mkdir dir="${dist.javadoc.dir}"/>
728        <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}">
729            <classpath>
730                <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
731            </classpath>
732            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
733                <filename name="**/*.java"/>
734            </fileset>
735            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
736                <include name="**/*.java"/>
737            </fileset>
738        </javadoc>
739    </target>
740    <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview">
741        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
742    </target>
743    <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
744    <!--
745               
746                JUNIT COMPILATION SECTION
747            -->
748    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
749        <mkdir dir="${build.test.classes.dir}"/>
750        <property name="j2ee.platform.embeddableejb.classpath" value=""/>
751    </target>
752    <target name="-pre-compile-test">
753        <!-- Empty placeholder for easier customization. -->
754        <!-- You can override this target in the ../build.xml file. -->
755    </target>
756    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
757        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
758        <copy todir="${build.test.classes.dir}">
759            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
760        </copy>
761    </target>
762    <target name="-post-compile-test">
763        <!-- Empty placeholder for easier customization. -->
764        <!-- You can override this target in the ../build.xml file. -->
765    </target>
766    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
767    <target name="-pre-compile-test-single">
768        <!-- Empty placeholder for easier customization. -->
769        <!-- You can override this target in the ../build.xml file. -->
770    </target>
771    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
772        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
773        <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}"/>
774        <copy todir="${build.test.classes.dir}">
775            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
776        </copy>
777    </target>
778    <target name="-post-compile-test-single">
779        <!-- Empty placeholder for easier customization. -->
780        <!-- You can override this target in the ../build.xml file. -->
781    </target>
782    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
783    <!--
784               
785                JUNIT EXECUTION SECTION
786            -->
787    <target depends="init" if="have.tests" name="-pre-test-run">
788        <mkdir dir="${build.test.results.dir}"/>
789    </target>
790    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
791        <webproject2:junit testincludes="**/*Test.java"/>
792    </target>
793    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
794        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
795    </target>
796    <target depends="init" if="have.tests" name="test-report"/>
797    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
798    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
799    <target depends="init" if="have.tests" name="-pre-test-run-single">
800        <mkdir dir="${build.test.results.dir}"/>
801    </target>
802    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
803        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
804        <webproject2:junit excludes="" includes="${test.includes}"/>
805    </target>
806    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
807        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
808    </target>
809    <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"/>
810    <!--
811               
812                JUNIT DEBUGGING SECTION
813            -->
814    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
815        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
816        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
817        <delete file="${test.report.file}"/>
818        <!-- must exist, otherwise the XML formatter would fail -->
819        <mkdir dir="${build.test.results.dir}"/>
820        <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}">
821            <customize>
822                <arg value="showoutput=true"/>
823                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
824                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
825            </customize>
826        </webproject1:debug>
827    </target>
828    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
829        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
830    </target>
831    <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
832    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
833        <webproject1:nbjpdareload dir="${build.test.classes.dir}"/>
834    </target>
835    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
836    <!--
837               
838                CLEANUP SECTION
839            -->
840    <target depends="init" if="no.dist.ear.dir" name="deps-clean" unless="no.deps">
841        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="clean"/>
842    </target>
843    <target depends="init" name="do-clean">
844        <condition property="build.dir.to.clean" value="${build.web.dir}">
845            <isset property="dist.ear.dir"/>
846        </condition>
847        <property name="build.dir.to.clean" value="${build.web.dir}"/>
848        <delete includeEmptyDirs="true" quiet="true">
849            <fileset dir="${build.dir.to.clean}/WEB-INF/lib"/>
850        </delete>
851        <delete dir="${build.dir}"/>
852        <available file="${build.dir.to.clean}/WEB-INF/lib" property="status.clean-failed" type="dir"/>
853        <delete dir="${dist.dir}"/>
854    </target>
855    <target depends="do-clean" if="status.clean-failed" name="check-clean">
856        <echo message="Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. "/>
857        <echo level="info" message="To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again."/>
858    </target>
859    <target depends="init" if="netbeans.home" name="undeploy-clean">
860        <nbundeploy failOnError="false" startServer="false"/>
861    </target>
862    <target name="-post-clean">
863        <!-- Empty placeholder for easier customization. -->
864        <!-- You can override this target in the ../build.xml file. -->
865    </target>
866    <target depends="init,undeploy-clean,deps-clean,do-clean,check-clean,-post-clean" description="Clean build products." name="clean"/>
867    <target depends="clean" description="Clean build products." name="clean-ear"/>
868</project>
Note: See TracBrowser for help on using the browser.