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