samples/livedb/nbproject/build-impl.xml
changeset 414 0e707eef1e4a
parent 413 f11943a373a7
child 415 f8492036f31c
     1.1 --- a/samples/livedb/nbproject/build-impl.xml	Mon Nov 11 13:17:34 2019 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,1770 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<!--
     1.6 -*** GENERATED FROM project.xml - DO NOT EDIT  ***
     1.7 -***         EDIT ../build.xml INSTEAD         ***
     1.8 -
     1.9 -For the purpose of easier reading the script
    1.10 -is divided into following sections:
    1.11 -
    1.12 -  - initialization
    1.13 -  - compilation
    1.14 -  - jar
    1.15 -  - execution
    1.16 -  - debugging
    1.17 -  - javadoc
    1.18 -  - test compilation
    1.19 -  - test execution
    1.20 -  - test debugging
    1.21 -  - applet
    1.22 -  - cleanup
    1.23 -
    1.24 -        -->
    1.25 -<project xmlns:if="ant:if" xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" xmlns:unless="ant:unless" basedir=".." default="default" name="livedb-impl">
    1.26 -    <fail message="Please build using Ant 1.8.0 or higher.">
    1.27 -        <condition>
    1.28 -            <not>
    1.29 -                <antversion atleast="1.8.0"/>
    1.30 -            </not>
    1.31 -        </condition>
    1.32 -    </fail>
    1.33 -    <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
    1.34 -    <!-- 
    1.35 -                ======================
    1.36 -                INITIALIZATION SECTION 
    1.37 -                ======================
    1.38 -            -->
    1.39 -    <target name="-pre-init">
    1.40 -        <!-- Empty placeholder for easier customization. -->
    1.41 -        <!-- You can override this target in the ../build.xml file. -->
    1.42 -    </target>
    1.43 -    <target depends="-pre-init" name="-init-private">
    1.44 -        <property file="nbproject/private/config.properties"/>
    1.45 -        <property file="nbproject/private/configs/${config}.properties"/>
    1.46 -        <property file="nbproject/private/private.properties"/>
    1.47 -    </target>
    1.48 -    <target depends="-pre-init,-init-private" name="-init-user">
    1.49 -        <property file="${user.properties.file}"/>
    1.50 -        <!-- The two properties below are usually overridden -->
    1.51 -        <!-- by the active platform. Just a fallback. -->
    1.52 -        <property name="default.javac.source" value="1.6"/>
    1.53 -        <property name="default.javac.target" value="1.6"/>
    1.54 -    </target>
    1.55 -    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
    1.56 -        <property file="nbproject/configs/${config}.properties"/>
    1.57 -        <property file="nbproject/project.properties"/>
    1.58 -    </target>
    1.59 -    <target name="-init-modules-supported">
    1.60 -        <condition property="modules.supported.internal" value="true">
    1.61 -            <not>
    1.62 -                <matches pattern="1\.[0-8](\..*)?" string="${javac.source}"/>
    1.63 -            </not>
    1.64 -        </condition>
    1.65 -    </target>
    1.66 -    <target depends="-init-modules-supported" if="modules.supported.internal" name="-init-macrodef-modulename">
    1.67 -        <macrodef name="modulename" uri="http://www.netbeans.org/ns/j2se-project/3">
    1.68 -            <attribute name="property"/>
    1.69 -            <attribute name="sourcepath"/>
    1.70 -            <sequential>
    1.71 -                <loadresource property="@{property}" quiet="true">
    1.72 -                    <javaresource classpath="@{sourcepath}" name="module-info.java" parentFirst="false"/>
    1.73 -                    <filterchain>
    1.74 -                        <stripjavacomments/>
    1.75 -                        <linecontainsregexp>
    1.76 -                            <regexp pattern="module .* \{"/>
    1.77 -                        </linecontainsregexp>
    1.78 -                        <tokenfilter>
    1.79 -                            <linetokenizer/>
    1.80 -                            <replaceregex flags="s" pattern="(\s*module\s+)(\S*)(\s*\{.*)" replace="\2"/>
    1.81 -                        </tokenfilter>
    1.82 -                        <striplinebreaks/>
    1.83 -                    </filterchain>
    1.84 -                </loadresource>
    1.85 -            </sequential>
    1.86 -        </macrodef>
    1.87 -    </target>
    1.88 -    <target depends="-init-modules-supported,-init-macrodef-modulename" if="modules.supported.internal" name="-init-source-module-properties">
    1.89 -        <fail message="Java 9 support requires Ant 1.10.0 or higher.">
    1.90 -            <condition>
    1.91 -                <not>
    1.92 -                    <antversion atleast="1.10.0"/>
    1.93 -                </not>
    1.94 -            </condition>
    1.95 -        </fail>
    1.96 -        <j2seproject3:modulename property="module.name" sourcepath="${src.dir}"/>
    1.97 -        <condition property="named.module.internal">
    1.98 -            <and>
    1.99 -                <isset property="module.name"/>
   1.100 -                <length length="0" string="${module.name}" when="greater"/>
   1.101 -            </and>
   1.102 -        </condition>
   1.103 -        <condition property="unnamed.module.internal">
   1.104 -            <not>
   1.105 -                <isset property="named.module.internal"/>
   1.106 -            </not>
   1.107 -        </condition>
   1.108 -        <property name="javac.modulepath" value=""/>
   1.109 -        <property name="run.modulepath" value="${javac.modulepath}"/>
   1.110 -        <property name="module.build.classes.dir" value="${build.classes.dir}"/>
   1.111 -        <property name="debug.modulepath" value="${run.modulepath}"/>
   1.112 -        <property name="javac.upgrademodulepath" value=""/>
   1.113 -        <property name="run.upgrademodulepath" value="${javac.upgrademodulepath}"/>
   1.114 -        <condition else="" property="javac.systemmodulepath.cmd.line.arg" value="--system '${javac.systemmodulepath}'">
   1.115 -            <and>
   1.116 -                <isset property="javac.systemmodulepath"/>
   1.117 -                <length length="0" string="${javac.systemmodulepath}" when="greater"/>
   1.118 -            </and>
   1.119 -        </condition>
   1.120 -        <property name="dist.jlink.dir" value="${dist.dir}/jlink"/>
   1.121 -        <property name="dist.jlink.output" value="${dist.jlink.dir}/${application.title}"/>
   1.122 -        <property name="module.name" value=""/>
   1.123 -    </target>
   1.124 -    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property,-init-modules-supported" name="-do-init">
   1.125 -        <property name="platform.java" value="${java.home}/bin/java"/>
   1.126 -        <available file="${manifest.file}" property="manifest.available"/>
   1.127 -        <condition property="splashscreen.available">
   1.128 -            <and>
   1.129 -                <not>
   1.130 -                    <equals arg1="${application.splash}" arg2="" trim="true"/>
   1.131 -                </not>
   1.132 -                <available file="${application.splash}"/>
   1.133 -            </and>
   1.134 -        </condition>
   1.135 -        <condition property="main.class.available">
   1.136 -            <and>
   1.137 -                <isset property="main.class"/>
   1.138 -                <not>
   1.139 -                    <equals arg1="${main.class}" arg2="" trim="true"/>
   1.140 -                </not>
   1.141 -            </and>
   1.142 -        </condition>
   1.143 -        <condition property="profile.available">
   1.144 -            <and>
   1.145 -                <isset property="javac.profile"/>
   1.146 -                <length length="0" string="${javac.profile}" when="greater"/>
   1.147 -                <not>
   1.148 -                    <matches pattern="1\.[0-7](\..*)?" string="${javac.source}"/>
   1.149 -                </not>
   1.150 -            </and>
   1.151 -        </condition>
   1.152 -        <condition property="do.archive">
   1.153 -            <or>
   1.154 -                <not>
   1.155 -                    <istrue value="${jar.archive.disabled}"/>
   1.156 -                </not>
   1.157 -                <istrue value="${not.archive.disabled}"/>
   1.158 -            </or>
   1.159 -        </condition>
   1.160 -        <condition property="do.archive+manifest.available">
   1.161 -            <and>
   1.162 -                <isset property="manifest.available"/>
   1.163 -                <istrue value="${do.archive}"/>
   1.164 -            </and>
   1.165 -        </condition>
   1.166 -        <condition property="do.archive+main.class.available">
   1.167 -            <and>
   1.168 -                <isset property="main.class.available"/>
   1.169 -                <istrue value="${do.archive}"/>
   1.170 -            </and>
   1.171 -        </condition>
   1.172 -        <condition property="do.archive+splashscreen.available">
   1.173 -            <and>
   1.174 -                <isset property="splashscreen.available"/>
   1.175 -                <istrue value="${do.archive}"/>
   1.176 -            </and>
   1.177 -        </condition>
   1.178 -        <condition property="do.archive+profile.available">
   1.179 -            <and>
   1.180 -                <isset property="profile.available"/>
   1.181 -                <istrue value="${do.archive}"/>
   1.182 -            </and>
   1.183 -        </condition>
   1.184 -        <condition property="have.tests">
   1.185 -            <or>
   1.186 -                <available file="${test.src.dir}"/>
   1.187 -            </or>
   1.188 -        </condition>
   1.189 -        <condition property="have.sources">
   1.190 -            <or>
   1.191 -                <available file="${src.dir}"/>
   1.192 -            </or>
   1.193 -        </condition>
   1.194 -        <condition property="netbeans.home+have.tests">
   1.195 -            <and>
   1.196 -                <isset property="netbeans.home"/>
   1.197 -                <isset property="have.tests"/>
   1.198 -            </and>
   1.199 -        </condition>
   1.200 -        <condition property="no.javadoc.preview">
   1.201 -            <and>
   1.202 -                <isset property="javadoc.preview"/>
   1.203 -                <isfalse value="${javadoc.preview}"/>
   1.204 -            </and>
   1.205 -        </condition>
   1.206 -        <property name="run.jvmargs" value=""/>
   1.207 -        <property name="run.jvmargs.ide" value=""/>
   1.208 -        <property name="javac.compilerargs" value=""/>
   1.209 -        <property name="work.dir" value="${basedir}"/>
   1.210 -        <condition property="no.deps">
   1.211 -            <and>
   1.212 -                <istrue value="${no.dependencies}"/>
   1.213 -            </and>
   1.214 -        </condition>
   1.215 -        <property name="javac.debug" value="true"/>
   1.216 -        <property name="javadoc.preview" value="true"/>
   1.217 -        <property name="application.args" value=""/>
   1.218 -        <property name="source.encoding" value="${file.encoding}"/>
   1.219 -        <property name="runtime.encoding" value="${source.encoding}"/>
   1.220 -        <property name="manifest.encoding" value="${source.encoding}"/>
   1.221 -        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
   1.222 -            <and>
   1.223 -                <isset property="javadoc.encoding"/>
   1.224 -                <not>
   1.225 -                    <equals arg1="${javadoc.encoding}" arg2=""/>
   1.226 -                </not>
   1.227 -            </and>
   1.228 -        </condition>
   1.229 -        <property name="javadoc.encoding.used" value="${source.encoding}"/>
   1.230 -        <property name="includes" value="**"/>
   1.231 -        <property name="excludes" value=""/>
   1.232 -        <property name="do.depend" value="false"/>
   1.233 -        <condition property="do.depend.true">
   1.234 -            <istrue value="${do.depend}"/>
   1.235 -        </condition>
   1.236 -        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
   1.237 -        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
   1.238 -            <and>
   1.239 -                <isset property="endorsed.classpath"/>
   1.240 -                <not>
   1.241 -                    <equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
   1.242 -                </not>
   1.243 -            </and>
   1.244 -        </condition>
   1.245 -        <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
   1.246 -            <isset property="profile.available"/>
   1.247 -        </condition>
   1.248 -        <condition else="false" property="jdkBug6558476">
   1.249 -            <and>
   1.250 -                <matches pattern="1\.[56]" string="${java.specification.version}"/>
   1.251 -                <not>
   1.252 -                    <os family="unix"/>
   1.253 -                </not>
   1.254 -            </and>
   1.255 -        </condition>
   1.256 -        <condition else="false" property="javac.fork">
   1.257 -            <or>
   1.258 -                <istrue value="${jdkBug6558476}"/>
   1.259 -                <istrue value="${javac.external.vm}"/>
   1.260 -            </or>
   1.261 -        </condition>
   1.262 -        <property name="jar.index" value="false"/>
   1.263 -        <property name="jar.index.metainf" value="${jar.index}"/>
   1.264 -        <property name="copylibs.rebase" value="true"/>
   1.265 -        <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
   1.266 -        <condition property="junit.available">
   1.267 -            <or>
   1.268 -                <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
   1.269 -                <available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
   1.270 -            </or>
   1.271 -        </condition>
   1.272 -        <condition property="testng.available">
   1.273 -            <available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
   1.274 -        </condition>
   1.275 -        <condition property="junit+testng.available">
   1.276 -            <and>
   1.277 -                <istrue value="${junit.available}"/>
   1.278 -                <istrue value="${testng.available}"/>
   1.279 -            </and>
   1.280 -        </condition>
   1.281 -        <condition else="testng" property="testng.mode" value="mixed">
   1.282 -            <istrue value="${junit+testng.available}"/>
   1.283 -        </condition>
   1.284 -        <condition else="" property="testng.debug.mode" value="-mixed">
   1.285 -            <istrue value="${junit+testng.available}"/>
   1.286 -        </condition>
   1.287 -        <property name="java.failonerror" value="true"/>
   1.288 -    </target>
   1.289 -    <target name="-post-init">
   1.290 -        <!-- Empty placeholder for easier customization. -->
   1.291 -        <!-- You can override this target in the ../build.xml file. -->
   1.292 -    </target>
   1.293 -    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
   1.294 -        <fail unless="src.dir">Must set src.dir</fail>
   1.295 -        <fail unless="test.src.dir">Must set test.src.dir</fail>
   1.296 -        <fail unless="build.dir">Must set build.dir</fail>
   1.297 -        <fail unless="dist.dir">Must set dist.dir</fail>
   1.298 -        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
   1.299 -        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
   1.300 -        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
   1.301 -        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
   1.302 -        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
   1.303 -        <fail unless="dist.jar">Must set dist.jar</fail>
   1.304 -    </target>
   1.305 -    <target name="-init-macrodef-property">
   1.306 -        <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.307 -            <attribute name="name"/>
   1.308 -            <attribute name="value"/>
   1.309 -            <sequential>
   1.310 -                <property name="@{name}" value="${@{value}}"/>
   1.311 -            </sequential>
   1.312 -        </macrodef>
   1.313 -    </target>
   1.314 -    <target depends="-init-ap-cmdline-properties,-init-source-module-properties" if="modules.supported.internal" name="-init-macrodef-javac-with-module">
   1.315 -        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.316 -            <attribute default="${src.dir}" name="srcdir"/>
   1.317 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.318 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.319 -            <attribute default="${javac.modulepath}" name="modulepath"/>
   1.320 -            <attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
   1.321 -            <attribute default="${javac.processorpath}" name="processorpath"/>
   1.322 -            <attribute default="${javac.processormodulepath}" name="processormodulepath"/>
   1.323 -            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   1.324 -            <attribute default="${includes}" name="includes"/>
   1.325 -            <attribute default="${excludes}" name="excludes"/>
   1.326 -            <attribute default="${javac.debug}" name="debug"/>
   1.327 -            <attribute default="${empty.dir}" name="sourcepath" unless:set="named.module.internal"/>
   1.328 -            <attribute default="${src.dir}" if:set="named.module.internal" name="sourcepath"/>
   1.329 -            <attribute default="${empty.dir}" name="gensrcdir"/>
   1.330 -            <element name="customize" optional="true"/>
   1.331 -            <sequential>
   1.332 -                <condition property="warn.excludes.internal">
   1.333 -                    <and>
   1.334 -                        <isset property="named.module.internal"/>
   1.335 -                        <length length="0" string="@{excludes}" trim="true" when="greater"/>
   1.336 -                    </and>
   1.337 -                </condition>
   1.338 -                <echo if:set="warn.excludes.internal" level="warning" message="The javac excludes are not supported in the JDK 9 Named Module."/>
   1.339 -                <property location="${build.dir}/empty" name="empty.dir"/>
   1.340 -                <mkdir dir="${empty.dir}"/>
   1.341 -                <mkdir dir="@{apgeneratedsrcdir}"/>
   1.342 -                <condition property="processormodulepath.set">
   1.343 -                    <resourcecount count="0" when="greater">
   1.344 -                        <path>
   1.345 -                            <pathelement path="@{processormodulepath}"/>
   1.346 -                        </path>
   1.347 -                    </resourcecount>
   1.348 -                </condition>
   1.349 -                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
   1.350 -                    <src>
   1.351 -                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   1.352 -                            <include name="*"/>
   1.353 -                        </dirset>
   1.354 -                    </src>
   1.355 -                    <classpath>
   1.356 -                        <path path="@{classpath}"/>
   1.357 -                    </classpath>
   1.358 -                    <modulepath>
   1.359 -                        <path path="@{modulepath}"/>
   1.360 -                    </modulepath>
   1.361 -                    <upgrademodulepath>
   1.362 -                        <path path="@{upgrademodulepath}"/>
   1.363 -                    </upgrademodulepath>
   1.364 -                    <compilerarg line="${javac.systemmodulepath.cmd.line.arg}"/>
   1.365 -                    <compilerarg line="${javac.profile.cmd.line.arg}"/>
   1.366 -                    <compilerarg line="${javac.compilerargs}"/>
   1.367 -                    <compilerarg if:set="processormodulepath.set" value="--processor-module-path"/>
   1.368 -                    <compilerarg if:set="processormodulepath.set" path="@{processormodulepath}"/>
   1.369 -                    <compilerarg unless:set="processormodulepath.set" value="-processorpath"/>
   1.370 -                    <compilerarg path="@{processorpath}:${empty.dir}" unless:set="processormodulepath.set"/>
   1.371 -                    <compilerarg line="${ap.processors.internal}"/>
   1.372 -                    <compilerarg line="${annotation.processing.processor.options}"/>
   1.373 -                    <compilerarg value="-s"/>
   1.374 -                    <compilerarg path="@{apgeneratedsrcdir}"/>
   1.375 -                    <compilerarg line="${ap.proc.none.internal}"/>
   1.376 -                    <customize/>
   1.377 -                </javac>
   1.378 -            </sequential>
   1.379 -        </macrodef>
   1.380 -    </target>
   1.381 -    <target depends="-init-ap-cmdline-properties,-init-source-module-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors" unless="modules.supported.internal">
   1.382 -        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.383 -            <attribute default="${src.dir}" name="srcdir"/>
   1.384 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.385 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.386 -            <attribute default="${javac.modulepath}" name="modulepath"/>
   1.387 -            <attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
   1.388 -            <attribute default="${javac.processorpath}" name="processorpath"/>
   1.389 -            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   1.390 -            <attribute default="${includes}" name="includes"/>
   1.391 -            <attribute default="${excludes}" name="excludes"/>
   1.392 -            <attribute default="${javac.debug}" name="debug"/>
   1.393 -            <attribute default="${empty.dir}" name="sourcepath"/>
   1.394 -            <attribute default="${empty.dir}" name="gensrcdir"/>
   1.395 -            <element name="customize" optional="true"/>
   1.396 -            <sequential>
   1.397 -                <property location="${build.dir}/empty" name="empty.dir"/>
   1.398 -                <mkdir dir="${empty.dir}"/>
   1.399 -                <mkdir dir="@{apgeneratedsrcdir}"/>
   1.400 -                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
   1.401 -                    <src>
   1.402 -                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   1.403 -                            <include name="*"/>
   1.404 -                        </dirset>
   1.405 -                    </src>
   1.406 -                    <classpath>
   1.407 -                        <path path="@{classpath}"/>
   1.408 -                    </classpath>
   1.409 -                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.410 -                    <compilerarg line="${javac.profile.cmd.line.arg}"/>
   1.411 -                    <compilerarg line="${javac.compilerargs}"/>
   1.412 -                    <compilerarg value="-processorpath"/>
   1.413 -                    <compilerarg path="@{processorpath}:${empty.dir}"/>
   1.414 -                    <compilerarg line="${ap.processors.internal}"/>
   1.415 -                    <compilerarg line="${annotation.processing.processor.options}"/>
   1.416 -                    <compilerarg value="-s"/>
   1.417 -                    <compilerarg path="@{apgeneratedsrcdir}"/>
   1.418 -                    <compilerarg line="${ap.proc.none.internal}"/>
   1.419 -                    <customize/>
   1.420 -                </javac>
   1.421 -            </sequential>
   1.422 -        </macrodef>
   1.423 -    </target>
   1.424 -    <target depends="-init-ap-cmdline-properties,-init-source-module-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
   1.425 -        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.426 -            <attribute default="${src.dir}" name="srcdir"/>
   1.427 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.428 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.429 -            <attribute default="${javac.modulepath}" name="modulepath"/>
   1.430 -            <attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
   1.431 -            <attribute default="${javac.processorpath}" name="processorpath"/>
   1.432 -            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   1.433 -            <attribute default="${includes}" name="includes"/>
   1.434 -            <attribute default="${excludes}" name="excludes"/>
   1.435 -            <attribute default="${javac.debug}" name="debug"/>
   1.436 -            <attribute default="${empty.dir}" name="sourcepath"/>
   1.437 -            <attribute default="${empty.dir}" name="gensrcdir"/>
   1.438 -            <element name="customize" optional="true"/>
   1.439 -            <sequential>
   1.440 -                <property location="${build.dir}/empty" name="empty.dir"/>
   1.441 -                <mkdir dir="${empty.dir}"/>
   1.442 -                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
   1.443 -                    <src>
   1.444 -                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   1.445 -                            <include name="*"/>
   1.446 -                        </dirset>
   1.447 -                    </src>
   1.448 -                    <classpath>
   1.449 -                        <path path="@{classpath}"/>
   1.450 -                    </classpath>
   1.451 -                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.452 -                    <compilerarg line="${javac.profile.cmd.line.arg}"/>
   1.453 -                    <compilerarg line="${javac.compilerargs}"/>
   1.454 -                    <customize/>
   1.455 -                </javac>
   1.456 -            </sequential>
   1.457 -        </macrodef>
   1.458 -    </target>
   1.459 -    <target depends="-init-macrodef-javac-with-module,-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
   1.460 -        <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.461 -            <attribute default="${src.dir}" name="srcdir"/>
   1.462 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.463 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.464 -            <sequential>
   1.465 -                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
   1.466 -                    <classpath>
   1.467 -                        <path path="@{classpath}"/>
   1.468 -                    </classpath>
   1.469 -                </depend>
   1.470 -            </sequential>
   1.471 -        </macrodef>
   1.472 -        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.473 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.474 -            <sequential>
   1.475 -                <fail unless="javac.includes">Must set javac.includes</fail>
   1.476 -                <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
   1.477 -                    <path>
   1.478 -                        <filelist dir="@{destdir}" files="${javac.includes}"/>
   1.479 -                    </path>
   1.480 -                    <globmapper from="*.java" to="*.class"/>
   1.481 -                </pathconvert>
   1.482 -                <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
   1.483 -                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
   1.484 -                <delete>
   1.485 -                    <files includesfile="${javac.includesfile.binary}"/>
   1.486 -                </delete>
   1.487 -                <delete>
   1.488 -                    <fileset file="${javac.includesfile.binary}"/>
   1.489 -                </delete>
   1.490 -            </sequential>
   1.491 -        </macrodef>
   1.492 -    </target>
   1.493 -    <target if="${junit.available}" name="-init-macrodef-junit-init">
   1.494 -        <condition else="false" property="nb.junit.batch" value="true">
   1.495 -            <and>
   1.496 -                <istrue value="${junit.available}"/>
   1.497 -                <not>
   1.498 -                    <isset property="test.method"/>
   1.499 -                </not>
   1.500 -            </and>
   1.501 -        </condition>
   1.502 -        <condition else="false" property="nb.junit.single" value="true">
   1.503 -            <and>
   1.504 -                <istrue value="${junit.available}"/>
   1.505 -                <isset property="test.method"/>
   1.506 -            </and>
   1.507 -        </condition>
   1.508 -    </target>
   1.509 -    <target name="-init-test-properties">
   1.510 -        <property name="test.binaryincludes" value="&lt;nothing&gt;"/>
   1.511 -        <property name="test.binarytestincludes" value=""/>
   1.512 -        <property name="test.binaryexcludes" value=""/>
   1.513 -    </target>
   1.514 -    <target depends="-init-modules-supported" if="modules.supported.internal" name="-init-macrodef-junit-prototype-with-module">
   1.515 -        <macrodef name="junit-prototype" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.516 -            <attribute default="${includes}" name="includes"/>
   1.517 -            <attribute default="${excludes}" name="excludes"/>
   1.518 -            <element name="customizePrototype" optional="true"/>
   1.519 -            <sequential>
   1.520 -                <property name="junit.forkmode" value="perTest"/>
   1.521 -                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   1.522 -                    <syspropertyset>
   1.523 -                        <propertyref prefix="test-sys-prop."/>
   1.524 -                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.525 -                    </syspropertyset>
   1.526 -                    <classpath>
   1.527 -                        <path path="${run.test.classpath}"/>
   1.528 -                    </classpath>
   1.529 -                    <modulepath>
   1.530 -                        <path path="${run.test.modulepath}"/>
   1.531 -                    </modulepath>
   1.532 -                    <formatter type="brief" usefile="false"/>
   1.533 -                    <formatter type="xml"/>
   1.534 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.535 -                    <jvmarg value="-ea"/>
   1.536 -                    <jvmarg line="${run.test.jvmargs}"/>
   1.537 -                    <customizePrototype/>
   1.538 -                </junit>
   1.539 -            </sequential>
   1.540 -        </macrodef>
   1.541 -    </target>
   1.542 -    <target depends="-init-modules-supported" name="-init-macrodef-junit-prototype-without-module" unless="modules.supported.internal">
   1.543 -        <macrodef name="junit-prototype" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.544 -            <attribute default="${includes}" name="includes"/>
   1.545 -            <attribute default="${excludes}" name="excludes"/>
   1.546 -            <element name="customizePrototype" optional="true"/>
   1.547 -            <sequential>
   1.548 -                <property name="junit.forkmode" value="perTest"/>
   1.549 -                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   1.550 -                    <syspropertyset>
   1.551 -                        <propertyref prefix="test-sys-prop."/>
   1.552 -                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.553 -                    </syspropertyset>
   1.554 -                    <classpath>
   1.555 -                        <path path="${run.test.classpath}"/>
   1.556 -                    </classpath>
   1.557 -                    <formatter type="brief" usefile="false"/>
   1.558 -                    <formatter type="xml"/>
   1.559 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.560 -                    <jvmarg value="-ea"/>
   1.561 -                    <customizePrototype/>
   1.562 -                </junit>
   1.563 -            </sequential>
   1.564 -        </macrodef>
   1.565 -    </target>
   1.566 -    <target depends="-init-test-properties,-init-macrodef-junit-prototype-with-module,-init-macrodef-junit-prototype-without-module" if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
   1.567 -        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.568 -            <attribute default="${includes}" name="includes"/>
   1.569 -            <attribute default="${excludes}" name="excludes"/>
   1.570 -            <attribute default="**" name="testincludes"/>
   1.571 -            <attribute default="" name="testmethods"/>
   1.572 -            <element name="customize" optional="true"/>
   1.573 -            <sequential>
   1.574 -                <j2seproject3:junit-prototype>
   1.575 -                    <customizePrototype>
   1.576 -                        <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
   1.577 -                        <customize/>
   1.578 -                    </customizePrototype>
   1.579 -                </j2seproject3:junit-prototype>
   1.580 -            </sequential>
   1.581 -        </macrodef>
   1.582 -    </target>
   1.583 -    <target depends="-init-test-properties,-init-macrodef-junit-prototype-with-module,-init-macrodef-junit-prototype-without-module" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
   1.584 -        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.585 -            <attribute default="${includes}" name="includes"/>
   1.586 -            <attribute default="${excludes}" name="excludes"/>
   1.587 -            <attribute default="**" name="testincludes"/>
   1.588 -            <attribute default="" name="testmethods"/>
   1.589 -            <element name="customize" optional="true"/>
   1.590 -            <sequential>
   1.591 -                <j2seproject3:junit-prototype>
   1.592 -                    <customizePrototype>
   1.593 -                        <batchtest todir="${build.test.results.dir}">
   1.594 -                            <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   1.595 -                                <filename name="@{testincludes}"/>
   1.596 -                            </fileset>
   1.597 -                            <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
   1.598 -                                <filename name="${test.binarytestincludes}"/>
   1.599 -                            </fileset>
   1.600 -                        </batchtest>
   1.601 -                        <customize/>
   1.602 -                    </customizePrototype>
   1.603 -                </j2seproject3:junit-prototype>
   1.604 -            </sequential>
   1.605 -        </macrodef>
   1.606 -    </target>
   1.607 -    <target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
   1.608 -    <target if="${testng.available}" name="-init-macrodef-testng">
   1.609 -        <macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.610 -            <attribute default="${includes}" name="includes"/>
   1.611 -            <attribute default="${excludes}" name="excludes"/>
   1.612 -            <attribute default="**" name="testincludes"/>
   1.613 -            <attribute default="" name="testmethods"/>
   1.614 -            <element name="customize" optional="true"/>
   1.615 -            <sequential>
   1.616 -                <condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
   1.617 -                    <isset property="test.method"/>
   1.618 -                </condition>
   1.619 -                <union id="test.set">
   1.620 -                    <fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
   1.621 -                        <filename name="@{testincludes}"/>
   1.622 -                    </fileset>
   1.623 -                </union>
   1.624 -                <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
   1.625 -                <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="livedb" testname="TestNG tests" workingDir="${work.dir}">
   1.626 -                    <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
   1.627 -                    <propertyset>
   1.628 -                        <propertyref prefix="test-sys-prop."/>
   1.629 -                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.630 -                    </propertyset>
   1.631 -                    <classpath>
   1.632 -                        <path path="${run.test.classpath}"/>
   1.633 -                    </classpath>
   1.634 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.635 -                    <customize/>
   1.636 -                </testng>
   1.637 -            </sequential>
   1.638 -        </macrodef>
   1.639 -    </target>
   1.640 -    <target name="-init-macrodef-test-impl">
   1.641 -        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.642 -            <attribute default="${includes}" name="includes"/>
   1.643 -            <attribute default="${excludes}" name="excludes"/>
   1.644 -            <attribute default="**" name="testincludes"/>
   1.645 -            <attribute default="" name="testmethods"/>
   1.646 -            <element implicit="true" name="customize" optional="true"/>
   1.647 -            <sequential>
   1.648 -                <echo>No tests executed.</echo>
   1.649 -            </sequential>
   1.650 -        </macrodef>
   1.651 -    </target>
   1.652 -    <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
   1.653 -        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.654 -            <attribute default="${includes}" name="includes"/>
   1.655 -            <attribute default="${excludes}" name="excludes"/>
   1.656 -            <attribute default="**" name="testincludes"/>
   1.657 -            <attribute default="" name="testmethods"/>
   1.658 -            <element implicit="true" name="customize" optional="true"/>
   1.659 -            <sequential>
   1.660 -                <j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   1.661 -                    <customize/>
   1.662 -                </j2seproject3:junit>
   1.663 -            </sequential>
   1.664 -        </macrodef>
   1.665 -    </target>
   1.666 -    <target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
   1.667 -        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.668 -            <attribute default="${includes}" name="includes"/>
   1.669 -            <attribute default="${excludes}" name="excludes"/>
   1.670 -            <attribute default="**" name="testincludes"/>
   1.671 -            <attribute default="" name="testmethods"/>
   1.672 -            <element implicit="true" name="customize" optional="true"/>
   1.673 -            <sequential>
   1.674 -                <j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   1.675 -                    <customize/>
   1.676 -                </j2seproject3:testng>
   1.677 -            </sequential>
   1.678 -        </macrodef>
   1.679 -    </target>
   1.680 -    <target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
   1.681 -        <macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.682 -            <attribute default="${includes}" name="includes"/>
   1.683 -            <attribute default="${excludes}" name="excludes"/>
   1.684 -            <attribute default="**" name="testincludes"/>
   1.685 -            <attribute default="" name="testmethods"/>
   1.686 -            <sequential>
   1.687 -                <j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   1.688 -                    <customize>
   1.689 -                        <jvmarg line="${run.jvmargs}"/>
   1.690 -                        <jvmarg line="${run.jvmargs.ide}"/>
   1.691 -                    </customize>
   1.692 -                </j2seproject3:test-impl>
   1.693 -            </sequential>
   1.694 -        </macrodef>
   1.695 -    </target>
   1.696 -    <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
   1.697 -        <macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.698 -            <attribute default="${includes}" name="includes"/>
   1.699 -            <attribute default="${excludes}" name="excludes"/>
   1.700 -            <attribute default="**" name="testincludes"/>
   1.701 -            <attribute default="" name="testmethods"/>
   1.702 -            <element name="customizeDebuggee" optional="true"/>
   1.703 -            <sequential>
   1.704 -                <j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   1.705 -                    <customize>
   1.706 -                        <jvmarg value="-agentlib:jdwp=transport=${debug-transport},address=${jpda.address}"/>
   1.707 -                        <customizeDebuggee/>
   1.708 -                    </customize>
   1.709 -                </j2seproject3:junit>
   1.710 -            </sequential>
   1.711 -        </macrodef>
   1.712 -    </target>
   1.713 -    <target if="${testng.available}" name="-init-macrodef-testng-debug">
   1.714 -        <macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.715 -            <attribute default="${main.class}" name="testClass"/>
   1.716 -            <attribute default="" name="testMethod"/>
   1.717 -            <element name="customize2" optional="true"/>
   1.718 -            <sequential>
   1.719 -                <condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
   1.720 -                    <isset property="test.method"/>
   1.721 -                </condition>
   1.722 -                <condition else="-suitename livedb -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
   1.723 -                    <matches pattern=".*\.xml" string="@{testClass}"/>
   1.724 -                </condition>
   1.725 -                <delete dir="${build.test.results.dir}" quiet="true"/>
   1.726 -                <mkdir dir="${build.test.results.dir}"/>
   1.727 -                <j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
   1.728 -                    <customizeDebuggee>
   1.729 -                        <customize2/>
   1.730 -                        <jvmarg value="-ea"/>
   1.731 -                        <arg line="${testng.debug.mode}"/>
   1.732 -                        <arg line="-d ${build.test.results.dir}"/>
   1.733 -                        <arg line="-listener org.testng.reporters.VerboseReporter"/>
   1.734 -                        <arg line="${testng.cmd.args}"/>
   1.735 -                    </customizeDebuggee>
   1.736 -                </j2seproject3:debug>
   1.737 -            </sequential>
   1.738 -        </macrodef>
   1.739 -    </target>
   1.740 -    <target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
   1.741 -        <macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.742 -            <attribute default="${main.class}" name="testClass"/>
   1.743 -            <attribute default="" name="testMethod"/>
   1.744 -            <element implicit="true" name="customize2" optional="true"/>
   1.745 -            <sequential>
   1.746 -                <j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
   1.747 -                    <customize2/>
   1.748 -                </j2seproject3:testng-debug>
   1.749 -            </sequential>
   1.750 -        </macrodef>
   1.751 -    </target>
   1.752 -    <target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
   1.753 -        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.754 -            <attribute default="${includes}" name="includes"/>
   1.755 -            <attribute default="${excludes}" name="excludes"/>
   1.756 -            <attribute default="**" name="testincludes"/>
   1.757 -            <attribute default="" name="testmethods"/>
   1.758 -            <attribute default="${main.class}" name="testClass"/>
   1.759 -            <attribute default="" name="testMethod"/>
   1.760 -            <sequential>
   1.761 -                <j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   1.762 -                    <customizeDebuggee>
   1.763 -                        <jvmarg line="${run.jvmargs}"/>
   1.764 -                        <jvmarg line="${run.jvmargs.ide}"/>
   1.765 -                    </customizeDebuggee>
   1.766 -                </j2seproject3:test-debug-impl>
   1.767 -            </sequential>
   1.768 -        </macrodef>
   1.769 -    </target>
   1.770 -    <target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
   1.771 -        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.772 -            <attribute default="${includes}" name="includes"/>
   1.773 -            <attribute default="${excludes}" name="excludes"/>
   1.774 -            <attribute default="**" name="testincludes"/>
   1.775 -            <attribute default="" name="testmethods"/>
   1.776 -            <attribute default="${main.class}" name="testClass"/>
   1.777 -            <attribute default="" name="testMethod"/>
   1.778 -            <sequential>
   1.779 -                <j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
   1.780 -                    <customize2>
   1.781 -                        <syspropertyset>
   1.782 -                            <propertyref prefix="test-sys-prop."/>
   1.783 -                            <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.784 -                        </syspropertyset>
   1.785 -                    </customize2>
   1.786 -                </j2seproject3:testng-debug-impl>
   1.787 -            </sequential>
   1.788 -        </macrodef>
   1.789 -    </target>
   1.790 -    <target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
   1.791 -    <!--
   1.792 -                pre NB7.2 profiling section; consider it deprecated
   1.793 -            -->
   1.794 -    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
   1.795 -    <target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
   1.796 -        <!-- Empty placeholder for easier customization. -->
   1.797 -        <!-- You can override this target in the ../build.xml file. -->
   1.798 -    </target>
   1.799 -    <target if="profiler.info.jvmargs.agent" name="-profile-post-init">
   1.800 -        <!-- Empty placeholder for easier customization. -->
   1.801 -        <!-- You can override this target in the ../build.xml file. -->
   1.802 -    </target>
   1.803 -    <target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
   1.804 -        <macrodef name="resolve">
   1.805 -            <attribute name="name"/>
   1.806 -            <attribute name="value"/>
   1.807 -            <sequential>
   1.808 -                <property name="@{name}" value="${env.@{value}}"/>
   1.809 -            </sequential>
   1.810 -        </macrodef>
   1.811 -        <macrodef name="profile">
   1.812 -            <attribute default="${main.class}" name="classname"/>
   1.813 -            <element name="customize" optional="true"/>
   1.814 -            <sequential>
   1.815 -                <property environment="env"/>
   1.816 -                <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
   1.817 -                <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
   1.818 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.819 -                    <jvmarg value="${profiler.info.jvmargs.agent}"/>
   1.820 -                    <jvmarg line="${profiler.info.jvmargs}"/>
   1.821 -                    <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
   1.822 -                    <arg line="${application.args}"/>
   1.823 -                    <classpath>
   1.824 -                        <path path="${run.classpath}"/>
   1.825 -                    </classpath>
   1.826 -                    <syspropertyset>
   1.827 -                        <propertyref prefix="run-sys-prop."/>
   1.828 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.829 -                    </syspropertyset>
   1.830 -                    <customize/>
   1.831 -                </java>
   1.832 -            </sequential>
   1.833 -        </macrodef>
   1.834 -    </target>
   1.835 -    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
   1.836 -        <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
   1.837 -        <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
   1.838 -    </target>
   1.839 -    <!--
   1.840 -                end of pre NB7.2 profiling section
   1.841 -            -->
   1.842 -    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
   1.843 -        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.844 -            <attribute default="${main.class}" name="name"/>
   1.845 -            <attribute default="${debug.modulepath}" name="modulepath"/>
   1.846 -            <attribute default="${debug.classpath}" name="classpath"/>
   1.847 -            <attribute default="" name="stopclassname"/>
   1.848 -            <sequential>
   1.849 -                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
   1.850 -                    <modulepath>
   1.851 -                        <path path="@{modulepath}"/>
   1.852 -                    </modulepath>
   1.853 -                    <classpath>
   1.854 -                        <path path="@{classpath}"/>
   1.855 -                    </classpath>
   1.856 -                </nbjpdastart>
   1.857 -            </sequential>
   1.858 -        </macrodef>
   1.859 -        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.860 -            <attribute default="${build.classes.dir}" name="dir"/>
   1.861 -            <sequential>
   1.862 -                <nbjpdareload>
   1.863 -                    <fileset dir="@{dir}" includes="${fix.classes}">
   1.864 -                        <include name="${fix.includes}*.class"/>
   1.865 -                    </fileset>
   1.866 -                </nbjpdareload>
   1.867 -            </sequential>
   1.868 -        </macrodef>
   1.869 -    </target>
   1.870 -    <target name="-init-debug-args">
   1.871 -        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
   1.872 -            <os family="windows"/>
   1.873 -        </condition>
   1.874 -        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
   1.875 -            <isset property="debug.transport"/>
   1.876 -        </condition>
   1.877 -    </target>
   1.878 -    <target depends="-init-debug-args" name="-init-macrodef-debug">
   1.879 -        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.880 -            <attribute default="${module.name}" name="modulename"/>
   1.881 -            <attribute default="${main.class}" name="classname"/>
   1.882 -            <attribute default="${debug.modulepath}" name="modulepath"/>
   1.883 -            <attribute default="${debug.classpath}" name="classpath"/>
   1.884 -            <element name="customizeDebuggee" optional="true"/>
   1.885 -            <sequential>
   1.886 -                <j2seproject1:java classname="@{classname}" classpath="@{classpath}" modulename="@{modulename}" modulepath="@{modulepath}">
   1.887 -                    <customize>
   1.888 -                        <jvmarg value="-agentlib:jdwp=transport=${debug-transport},address=${jpda.address}"/>
   1.889 -                        <customizeDebuggee/>
   1.890 -                    </customize>
   1.891 -                </j2seproject1:java>
   1.892 -            </sequential>
   1.893 -        </macrodef>
   1.894 -    </target>
   1.895 -    <target depends="-init-source-module-properties" if="named.module.internal" name="-init-macrodef-java-with-module">
   1.896 -        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.897 -            <attribute default="${module.name}" name="modulename"/>
   1.898 -            <attribute default="${main.class}" name="classname"/>
   1.899 -            <attribute default="${run.modulepath}" name="modulepath"/>
   1.900 -            <attribute default="${run.upgrademodulepath}" name="upgrademodulepath"/>
   1.901 -            <attribute default="${run.classpath}" name="classpath"/>
   1.902 -            <attribute default="jvm" name="jvm"/>
   1.903 -            <element name="customize" optional="true"/>
   1.904 -            <sequential>
   1.905 -                <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" module="@{modulename}">
   1.906 -                    <classpath>
   1.907 -                        <path path="@{classpath}"/>
   1.908 -                    </classpath>
   1.909 -                    <modulepath>
   1.910 -                        <pathelement path="@{modulepath}"/>
   1.911 -                        <pathelement location="${module.build.classes.dir}"/>
   1.912 -                    </modulepath>
   1.913 -                    <upgrademodulepath>
   1.914 -                        <path path="@{upgrademodulepath}"/>
   1.915 -                    </upgrademodulepath>
   1.916 -                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   1.917 -                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   1.918 -                    <jvmarg line="${run.jvmargs}"/>
   1.919 -                    <jvmarg line="${run.jvmargs.ide}"/>
   1.920 -                    <syspropertyset>
   1.921 -                        <propertyref prefix="run-sys-prop."/>
   1.922 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.923 -                    </syspropertyset>
   1.924 -                    <customize/>
   1.925 -                </java>
   1.926 -            </sequential>
   1.927 -        </macrodef>
   1.928 -    </target>
   1.929 -    <target depends="-init-source-module-properties" if="unnamed.module.internal" name="-init-macrodef-java-with-unnamed-module">
   1.930 -        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.931 -            <attribute default="" name="modulename"/>
   1.932 -            <attribute default="${main.class}" name="classname"/>
   1.933 -            <attribute default="${run.modulepath}" name="modulepath"/>
   1.934 -            <attribute default="${run.upgrademodulepath}" name="upgrademodulepath"/>
   1.935 -            <attribute default="${run.classpath}" name="classpath"/>
   1.936 -            <attribute default="jvm" name="jvm"/>
   1.937 -            <element name="customize" optional="true"/>
   1.938 -            <sequential>
   1.939 -                <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
   1.940 -                    <classpath>
   1.941 -                        <path path="@{classpath}"/>
   1.942 -                    </classpath>
   1.943 -                    <modulepath>
   1.944 -                        <path path="@{modulepath}"/>
   1.945 -                    </modulepath>
   1.946 -                    <upgrademodulepath>
   1.947 -                        <path path="@{upgrademodulepath}"/>
   1.948 -                    </upgrademodulepath>
   1.949 -                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   1.950 -                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   1.951 -                    <jvmarg line="${run.jvmargs}"/>
   1.952 -                    <jvmarg line="${run.jvmargs.ide}"/>
   1.953 -                    <syspropertyset>
   1.954 -                        <propertyref prefix="run-sys-prop."/>
   1.955 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.956 -                    </syspropertyset>
   1.957 -                    <customize/>
   1.958 -                </java>
   1.959 -            </sequential>
   1.960 -        </macrodef>
   1.961 -    </target>
   1.962 -    <target depends="-init-source-module-properties" name="-init-macrodef-java-without-module" unless="modules.supported.internal">
   1.963 -        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.964 -            <attribute default="" name="modulename"/>
   1.965 -            <attribute default="${main.class}" name="classname"/>
   1.966 -            <attribute default="" name="modulepath"/>
   1.967 -            <attribute default="${run.classpath}" name="classpath"/>
   1.968 -            <attribute default="jvm" name="jvm"/>
   1.969 -            <element name="customize" optional="true"/>
   1.970 -            <sequential>
   1.971 -                <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
   1.972 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.973 -                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   1.974 -                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   1.975 -                    <jvmarg line="${run.jvmargs}"/>
   1.976 -                    <jvmarg line="${run.jvmargs.ide}"/>
   1.977 -                    <classpath>
   1.978 -                        <path path="@{classpath}"/>
   1.979 -                    </classpath>
   1.980 -                    <syspropertyset>
   1.981 -                        <propertyref prefix="run-sys-prop."/>
   1.982 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.983 -                    </syspropertyset>
   1.984 -                    <customize/>
   1.985 -                </java>
   1.986 -            </sequential>
   1.987 -        </macrodef>
   1.988 -    </target>
   1.989 -    <target depends="-init-macrodef-java-with-module, -init-macrodef-java-with-unnamed-module, -init-macrodef-java-without-module" name="-init-macrodef-java"/>
   1.990 -    <target name="-init-macrodef-copylibs">
   1.991 -        <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.992 -            <attribute default="${manifest.file}" name="manifest"/>
   1.993 -            <element name="customize" optional="true"/>
   1.994 -            <sequential>
   1.995 -                <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   1.996 -                <pathconvert property="run.classpath.without.build.classes.dir">
   1.997 -                    <path path="${run.classpath}"/>
   1.998 -                    <map from="${build.classes.dir.resolved}" to=""/>
   1.999 -                </pathconvert>
  1.1000 -                <pathconvert pathsep=" " property="jar.classpath">
  1.1001 -                    <path path="${run.classpath.without.build.classes.dir}"/>
  1.1002 -                    <chainedmapper>
  1.1003 -                        <flattenmapper/>
  1.1004 -                        <filtermapper>
  1.1005 -                            <replacestring from=" " to="%20"/>
  1.1006 -                        </filtermapper>
  1.1007 -                        <globmapper from="*" to="lib/*"/>
  1.1008 -                    </chainedmapper>
  1.1009 -                </pathconvert>
  1.1010 -                <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
  1.1011 -                <copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" manifestencoding="UTF-8" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
  1.1012 -                    <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
  1.1013 -                    <manifest>
  1.1014 -                        <attribute name="Class-Path" value="${jar.classpath}"/>
  1.1015 -                        <customize/>
  1.1016 -                    </manifest>
  1.1017 -                </copylibs>
  1.1018 -            </sequential>
  1.1019 -        </macrodef>
  1.1020 -    </target>
  1.1021 -    <target name="-init-presetdef-jar">
  1.1022 -        <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
  1.1023 -            <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8">
  1.1024 -                <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
  1.1025 -            </jar>
  1.1026 -        </presetdef>
  1.1027 -    </target>
  1.1028 -    <target name="-init-ap-cmdline-properties">
  1.1029 -        <property name="annotation.processing.enabled" value="true"/>
  1.1030 -        <property name="annotation.processing.processors.list" value=""/>
  1.1031 -        <property name="annotation.processing.processor.options" value=""/>
  1.1032 -        <property name="annotation.processing.run.all.processors" value="true"/>
  1.1033 -        <property name="javac.processorpath" value="${javac.classpath}"/>
  1.1034 -        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
  1.1035 -        <condition property="ap.supported.internal" value="true">
  1.1036 -            <not>
  1.1037 -                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
  1.1038 -            </not>
  1.1039 -        </condition>
  1.1040 -    </target>
  1.1041 -    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
  1.1042 -        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
  1.1043 -            <isfalse value="${annotation.processing.run.all.processors}"/>
  1.1044 -        </condition>
  1.1045 -        <condition else="" property="ap.proc.none.internal" value="-proc:none">
  1.1046 -            <isfalse value="${annotation.processing.enabled}"/>
  1.1047 -        </condition>
  1.1048 -    </target>
  1.1049 -    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
  1.1050 -        <property name="ap.cmd.line.internal" value=""/>
  1.1051 -    </target>
  1.1052 -    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-test,-init-macrodef-test-debug,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
  1.1053 -    <!--
  1.1054 -                ===================
  1.1055 -                COMPILATION SECTION
  1.1056 -                ===================
  1.1057 -            -->
  1.1058 -    <target name="-deps-jar-init" unless="built-jar.properties">
  1.1059 -        <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
  1.1060 -        <delete file="${built-jar.properties}" quiet="true"/>
  1.1061 -    </target>
  1.1062 -    <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
  1.1063 -        <echo level="warn" message="Cycle detected: livedb was already built"/>
  1.1064 -    </target>
  1.1065 -    <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
  1.1066 -        <mkdir dir="${build.dir}"/>
  1.1067 -        <touch file="${built-jar.properties}" verbose="false"/>
  1.1068 -        <property file="${built-jar.properties}" prefix="already.built.jar."/>
  1.1069 -        <antcall target="-warn-already-built-jar"/>
  1.1070 -        <propertyfile file="${built-jar.properties}">
  1.1071 -            <entry key="${basedir}" value=""/>
  1.1072 -        </propertyfile>
  1.1073 -    </target>
  1.1074 -    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
  1.1075 -    <target depends="init" name="-check-automatic-build">
  1.1076 -        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
  1.1077 -    </target>
  1.1078 -    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
  1.1079 -        <antcall target="clean">
  1.1080 -            <param name="no.dependencies" value="true"/>
  1.1081 -        </antcall>
  1.1082 -    </target>
  1.1083 -    <target depends="init,deps-jar" name="-pre-pre-compile">
  1.1084 -        <mkdir dir="${build.classes.dir}"/>
  1.1085 -    </target>
  1.1086 -    <target name="-pre-compile">
  1.1087 -        <!-- Empty placeholder for easier customization. -->
  1.1088 -        <!-- You can override this target in the ../build.xml file. -->
  1.1089 -    </target>
  1.1090 -    <target if="do.depend.true" name="-compile-depend">
  1.1091 -        <pathconvert property="build.generated.subdirs">
  1.1092 -            <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
  1.1093 -                <include name="*"/>
  1.1094 -            </dirset>
  1.1095 -        </pathconvert>
  1.1096 -        <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
  1.1097 -    </target>
  1.1098 -    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
  1.1099 -        <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
  1.1100 -        <copy todir="${build.classes.dir}">
  1.1101 -            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
  1.1102 -        </copy>
  1.1103 -    </target>
  1.1104 -    <target if="has.persistence.xml" name="-copy-persistence-xml">
  1.1105 -        <mkdir dir="${build.classes.dir}/META-INF"/>
  1.1106 -        <copy todir="${build.classes.dir}/META-INF">
  1.1107 -            <fileset dir="${meta.inf.dir}" includes="persistence.xml orm.xml"/>
  1.1108 -        </copy>
  1.1109 -    </target>
  1.1110 -    <target name="-post-compile">
  1.1111 -        <!-- Empty placeholder for easier customization. -->
  1.1112 -        <!-- You can override this target in the ../build.xml file. -->
  1.1113 -    </target>
  1.1114 -    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
  1.1115 -    <target name="-pre-compile-single">
  1.1116 -        <!-- Empty placeholder for easier customization. -->
  1.1117 -        <!-- You can override this target in the ../build.xml file. -->
  1.1118 -    </target>
  1.1119 -    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
  1.1120 -        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
  1.1121 -        <j2seproject3:force-recompile/>
  1.1122 -        <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}, module-info.java" sourcepath="${src.dir}"/>
  1.1123 -    </target>
  1.1124 -    <target name="-post-compile-single">
  1.1125 -        <!-- Empty placeholder for easier customization. -->
  1.1126 -        <!-- You can override this target in the ../build.xml file. -->
  1.1127 -    </target>
  1.1128 -    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
  1.1129 -    <!--
  1.1130 -                ====================
  1.1131 -                JAR BUILDING SECTION
  1.1132 -                ====================
  1.1133 -            -->
  1.1134 -    <target depends="init" name="-pre-pre-jar">
  1.1135 -        <dirname file="${dist.jar}" property="dist.jar.dir"/>
  1.1136 -        <mkdir dir="${dist.jar.dir}"/>
  1.1137 -    </target>
  1.1138 -    <target name="-pre-jar">
  1.1139 -        <!-- Empty placeholder for easier customization. -->
  1.1140 -        <!-- You can override this target in the ../build.xml file. -->
  1.1141 -    </target>
  1.1142 -    <target depends="init,compile" name="-check-module-main-class">
  1.1143 -        <pathconvert property="main.class.file">
  1.1144 -            <string value="${main.class}"/>
  1.1145 -            <unpackagemapper from="*" to="*.class"/>
  1.1146 -        </pathconvert>
  1.1147 -        <condition property="do.module.main.class">
  1.1148 -            <and>
  1.1149 -                <isset property="main.class.available"/>
  1.1150 -                <available file="${build.classes.dir}/module-info.class"/>
  1.1151 -                <available file="${build.classes.dir}/${main.class.file}"/>
  1.1152 -                <isset property="libs.CopyLibs.classpath"/>
  1.1153 -                <available classname="org.netbeans.modules.java.j2seproject.moduletask.ModuleMainClass" classpath="${libs.CopyLibs.classpath}"/>
  1.1154 -            </and>
  1.1155 -        </condition>
  1.1156 -    </target>
  1.1157 -    <target depends="-check-module-main-class" if="do.module.main.class" name="-set-module-main-class">
  1.1158 -        <taskdef classname="org.netbeans.modules.java.j2seproject.moduletask.ModuleMainClass" classpath="${libs.CopyLibs.classpath}" name="modulemainclass"/>
  1.1159 -        <modulemainclass failonerror="false" mainclass="${main.class}" moduleinfo="${build.classes.dir}/module-info.class"/>
  1.1160 -    </target>
  1.1161 -    <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available">
  1.1162 -        <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
  1.1163 -        <touch file="${tmp.manifest.file}" verbose="false"/>
  1.1164 -    </target>
  1.1165 -    <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
  1.1166 -        <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
  1.1167 -        <copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/>
  1.1168 -    </target>
  1.1169 -    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
  1.1170 -        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
  1.1171 -            <attribute name="Main-Class" value="${main.class}"/>
  1.1172 -        </manifest>
  1.1173 -    </target>
  1.1174 -    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
  1.1175 -        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
  1.1176 -            <attribute name="Profile" value="${javac.profile}"/>
  1.1177 -        </manifest>
  1.1178 -    </target>
  1.1179 -    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
  1.1180 -        <basename file="${application.splash}" property="splashscreen.basename"/>
  1.1181 -        <mkdir dir="${build.classes.dir}/META-INF"/>
  1.1182 -        <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
  1.1183 -        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
  1.1184 -            <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
  1.1185 -        </manifest>
  1.1186 -    </target>
  1.1187 -    <target depends="init,compile" name="-check-do-mkdist">
  1.1188 -        <condition property="do.mkdist">
  1.1189 -            <and>
  1.1190 -                <isset property="do.archive"/>
  1.1191 -                <isset property="libs.CopyLibs.classpath"/>
  1.1192 -                <not>
  1.1193 -                    <istrue value="${mkdist.disabled}"/>
  1.1194 -                </not>
  1.1195 -                <not>
  1.1196 -                    <available file="${build.classes.dir}/module-info.class"/>
  1.1197 -                </not>
  1.1198 -            </and>
  1.1199 -        </condition>
  1.1200 -    </target>
  1.1201 -    <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.mkdist" name="-do-jar-copylibs">
  1.1202 -        <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
  1.1203 -        <echo level="info">To run this application from the command line without Ant, try:</echo>
  1.1204 -        <property location="${dist.jar}" name="dist.jar.resolved"/>
  1.1205 -        <echo level="info">java -jar "${dist.jar.resolved}"</echo>
  1.1206 -    </target>
  1.1207 -    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
  1.1208 -        <j2seproject1:jar manifest="${tmp.manifest.file}"/>
  1.1209 -        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
  1.1210 -        <property location="${dist.jar}" name="dist.jar.resolved"/>
  1.1211 -        <condition else="${dist.jar.resolved}" property="jar.usage.message.class.path.replacement" value="">
  1.1212 -            <isset property="named.module.internal"/>
  1.1213 -        </condition>
  1.1214 -        <pathconvert property="run.classpath.with.dist.jar">
  1.1215 -            <path path="${run.classpath}"/>
  1.1216 -            <map from="${build.classes.dir.resolved}" to="${jar.usage.message.class.path.replacement}"/>
  1.1217 -        </pathconvert>
  1.1218 -        <pathconvert property="run.modulepath.with.dist.jar">
  1.1219 -            <path location="${dist.jar.resolved}"/>
  1.1220 -            <path path="${run.modulepath}"/>
  1.1221 -            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
  1.1222 -        </pathconvert>
  1.1223 -        <condition else="${run.modulepath}" property="jar.usage.message.run.modulepath.with.dist.jar" value="${run.modulepath.with.dist.jar}">
  1.1224 -            <isset property="named.module.internal"/>
  1.1225 -        </condition>
  1.1226 -        <condition else="" property="jar.usage.message.module.path" value=" -p ${jar.usage.message.run.modulepath.with.dist.jar}">
  1.1227 -            <and>
  1.1228 -                <isset property="modules.supported.internal"/>
  1.1229 -                <length length="0" string="${jar.usage.message.run.modulepath.with.dist.jar}" when="greater"/>
  1.1230 -            </and>
  1.1231 -        </condition>
  1.1232 -        <condition else="" property="jar.usage.message.class.path" value=" -cp ${run.classpath.with.dist.jar}">
  1.1233 -            <length length="0" string="${run.classpath.with.dist.jar}" when="greater"/>
  1.1234 -        </condition>
  1.1235 -        <condition else="/${main.class}" property="jar.usage.message.main.class.class.selector" value="">
  1.1236 -            <isset property="do.module.main.class"/>
  1.1237 -        </condition>
  1.1238 -        <condition else=" ${main.class}" property="jar.usage.message.main.class" value=" -m ${module.name}${jar.usage.message.main.class.class.selector}">
  1.1239 -            <isset property="named.module.internal"/>
  1.1240 -        </condition>
  1.1241 -        <condition else="" property="jar.usage.message" value="To run this application from the command line without Ant, try:${line.separator}${platform.java}${jar.usage.message.module.path}${jar.usage.message.class.path}${jar.usage.message.main.class}">
  1.1242 -            <isset property="main.class.available"/>
  1.1243 -        </condition>
  1.1244 -        <condition else="debug" property="jar.usage.level" value="info">
  1.1245 -            <isset property="main.class.available"/>
  1.1246 -        </condition>
  1.1247 -        <echo level="${jar.usage.level}" message="${jar.usage.message}"/>
  1.1248 -    </target>
  1.1249 -    <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
  1.1250 -        <delete>
  1.1251 -            <fileset file="${tmp.manifest.file}"/>
  1.1252 -        </delete>
  1.1253 -    </target>
  1.1254 -    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-jar,-do-jar-delete-manifest" name="-do-jar-without-libraries"/>
  1.1255 -    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-copylibs,-do-jar-delete-manifest" name="-do-jar-with-libraries"/>
  1.1256 -    <target name="-post-jar">
  1.1257 -        <!-- Empty placeholder for easier customization. -->
  1.1258 -        <!-- You can override this target in the ../build.xml file. -->
  1.1259 -    </target>
  1.1260 -    <target depends="init,compile,-pre-jar,-set-module-main-class,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
  1.1261 -    <target depends="init,compile,-pre-jar,-do-jar,-post-jar,deploy" description="Build JAR." name="jar"/>
  1.1262 -    <!--
  1.1263 -                =================
  1.1264 -                DEPLOY SECTION
  1.1265 -                =================
  1.1266 -            -->
  1.1267 -    <target name="-pre-deploy">
  1.1268 -        <!-- Empty placeholder for easier customization. -->
  1.1269 -        <!-- You can override this target in the ../build.xml file. -->
  1.1270 -    </target>
  1.1271 -    <target depends="init" name="-check-jlink">
  1.1272 -        <condition property="do.jlink.internal">
  1.1273 -            <and>
  1.1274 -                <istrue value="${do.jlink}"/>
  1.1275 -                <isset property="do.archive"/>
  1.1276 -                <isset property="named.module.internal"/>
  1.1277 -            </and>
  1.1278 -        </condition>
  1.1279 -    </target>
  1.1280 -    <target depends="init,-do-jar,-post-jar,-pre-deploy,-check-jlink" if="do.jlink.internal" name="-do-deploy">
  1.1281 -        <delete dir="${dist.jlink.dir}" failonerror="false" quiet="true"/>
  1.1282 -        <property name="jlink.launcher.name" value="${application.title}"/>
  1.1283 -        <condition else="${module.name}" property="jlink.add.modules" value="${module.name},${jlink.additionalmodules}">
  1.1284 -            <and>
  1.1285 -                <isset property="jlink.additionalmodules"/>
  1.1286 -                <length length="0" string="${jlink.additionalmodules}" when="greater"/>
  1.1287 -            </and>
  1.1288 -        </condition>
  1.1289 -        <condition property="jlink.do.strip.internal">
  1.1290 -            <and>
  1.1291 -                <isset property="jlink.strip"/>
  1.1292 -                <istrue value="${jlink.strip}"/>
  1.1293 -            </and>
  1.1294 -        </condition>
  1.1295 -        <condition property="jlink.do.additionalparam.internal">
  1.1296 -            <and>
  1.1297 -                <isset property="jlink.additionalparam"/>
  1.1298 -                <length length="0" string="${jlink.additionalparam}" when="greater"/>
  1.1299 -            </and>
  1.1300 -        </condition>
  1.1301 -        <condition property="jlink.do.launcher.internal">
  1.1302 -            <and>
  1.1303 -                <istrue value="${jlink.launcher}"/>
  1.1304 -                <isset property="main.class.available"/>
  1.1305 -            </and>
  1.1306 -        </condition>
  1.1307 -        <property name="platform.jlink" value="${jdk.home}/bin/jlink"/>
  1.1308 -        <property name="jlink.systemmodules.internal" value="${jdk.home}/jmods"/>
  1.1309 -        <exec executable="${platform.jlink}">
  1.1310 -            <arg value="--module-path"/>
  1.1311 -            <arg path="${jlink.systemmodules.internal}:${run.modulepath}:${dist.jar}"/>
  1.1312 -            <arg value="--add-modules"/>
  1.1313 -            <arg value="${jlink.add.modules}"/>
  1.1314 -            <arg if:set="jlink.do.strip.internal" value="--strip-debug"/>
  1.1315 -            <arg if:set="jlink.do.launcher.internal" value="--launcher"/>
  1.1316 -            <arg if:set="jlink.do.launcher.internal" value="${jlink.launcher.name}=${module.name}/${main.class}"/>
  1.1317 -            <arg if:set="jlink.do.additionalparam.internal" line="${jlink.additionalparam}"/>
  1.1318 -            <arg value="--output"/>
  1.1319 -            <arg value="${dist.jlink.output}"/>
  1.1320 -        </exec>
  1.1321 -    </target>
  1.1322 -    <target name="-post-deploy">
  1.1323 -        <!-- Empty placeholder for easier customization. -->
  1.1324 -        <!-- You can override this target in the ../build.xml file. -->
  1.1325 -    </target>
  1.1326 -    <target depends="-do-jar,-post-jar,-pre-deploy,-do-deploy,-post-deploy" name="deploy"/>
  1.1327 -    <!--
  1.1328 -                =================
  1.1329 -                EXECUTION SECTION
  1.1330 -                =================
  1.1331 -            -->
  1.1332 -    <target depends="init,compile" description="Run a main class." name="run">
  1.1333 -        <j2seproject1:java>
  1.1334 -            <customize>
  1.1335 -                <arg line="${application.args}"/>
  1.1336 -            </customize>
  1.1337 -        </j2seproject1:java>
  1.1338 -    </target>
  1.1339 -    <target name="-do-not-recompile">
  1.1340 -        <property name="javac.includes.binary" value=""/>
  1.1341 -    </target>
  1.1342 -    <target depends="init,compile-single" name="run-single">
  1.1343 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1.1344 -        <j2seproject1:java classname="${run.class}"/>
  1.1345 -    </target>
  1.1346 -    <target depends="init,compile-test-single" name="run-test-with-main">
  1.1347 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1.1348 -        <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
  1.1349 -    </target>
  1.1350 -    <!--
  1.1351 -                =================
  1.1352 -                DEBUGGING SECTION
  1.1353 -                =================
  1.1354 -            -->
  1.1355 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
  1.1356 -        <j2seproject1:nbjpdastart name="${debug.class}"/>
  1.1357 -    </target>
  1.1358 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
  1.1359 -        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
  1.1360 -    </target>
  1.1361 -    <target depends="init,compile" name="-debug-start-debuggee">
  1.1362 -        <j2seproject3:debug>
  1.1363 -            <customizeDebuggee>
  1.1364 -                <arg line="${application.args}"/>
  1.1365 -            </customizeDebuggee>
  1.1366 -        </j2seproject3:debug>
  1.1367 -    </target>
  1.1368 -    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
  1.1369 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
  1.1370 -        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
  1.1371 -    </target>
  1.1372 -    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
  1.1373 -    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
  1.1374 -        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
  1.1375 -        <j2seproject3:debug classname="${debug.class}"/>
  1.1376 -    </target>
  1.1377 -    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
  1.1378 -    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
  1.1379 -        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
  1.1380 -        <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
  1.1381 -    </target>
  1.1382 -    <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
  1.1383 -    <target depends="init" name="-pre-debug-fix">
  1.1384 -        <fail unless="fix.includes">Must set fix.includes</fail>
  1.1385 -        <property name="javac.includes" value="${fix.includes}.java"/>
  1.1386 -    </target>
  1.1387 -    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
  1.1388 -        <j2seproject1:nbjpdareload/>
  1.1389 -    </target>
  1.1390 -    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
  1.1391 -    <!--
  1.1392 -                =================
  1.1393 -                PROFILING SECTION
  1.1394 -                =================
  1.1395 -            -->
  1.1396 -    <!--
  1.1397 -                pre NB7.2 profiler integration
  1.1398 -            -->
  1.1399 -    <target depends="profile-init,compile" description="Profile a project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
  1.1400 -        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1.1401 -        <nbprofiledirect>
  1.1402 -            <classpath>
  1.1403 -                <path path="${run.classpath}"/>
  1.1404 -            </classpath>
  1.1405 -        </nbprofiledirect>
  1.1406 -        <profile/>
  1.1407 -    </target>
  1.1408 -    <target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="profiler.info.jvmargs.agent" name="-profile-single-pre72">
  1.1409 -        <fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
  1.1410 -        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1.1411 -        <nbprofiledirect>
  1.1412 -            <classpath>
  1.1413 -                <path path="${run.classpath}"/>
  1.1414 -            </classpath>
  1.1415 -        </nbprofiledirect>
  1.1416 -        <profile classname="${profile.class}"/>
  1.1417 -    </target>
  1.1418 -    <target depends="profile-init,compile-single" if="profiler.info.jvmargs.agent" name="-profile-applet-pre72">
  1.1419 -        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1.1420 -        <nbprofiledirect>
  1.1421 -            <classpath>
  1.1422 -                <path path="${run.classpath}"/>
  1.1423 -            </classpath>
  1.1424 -        </nbprofiledirect>
  1.1425 -        <profile classname="sun.applet.AppletViewer">
  1.1426 -            <customize>
  1.1427 -                <arg value="${applet.url}"/>
  1.1428 -            </customize>
  1.1429 -        </profile>
  1.1430 -    </target>
  1.1431 -    <target depends="-init-macrodef-junit,profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
  1.1432 -        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1.1433 -        <nbprofiledirect>
  1.1434 -            <classpath>
  1.1435 -                <path path="${run.test.classpath}"/>
  1.1436 -            </classpath>
  1.1437 -        </nbprofiledirect>
  1.1438 -        <j2seproject3:junit excludes="${excludes}" includes="${includes}" testincludes="${profile.class}" testmethods="">
  1.1439 -            <customize>
  1.1440 -                <jvmarg value="-agentlib:jdwp=transport=${debug-transport},address=${jpda.address}"/>
  1.1441 -                <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
  1.1442 -                <jvmarg value="${profiler.info.jvmargs.agent}"/>
  1.1443 -                <jvmarg line="${profiler.info.jvmargs}"/>
  1.1444 -                <classpath>
  1.1445 -                    <path path="${run.test.classpath}"/>
  1.1446 -                </classpath>
  1.1447 -            </customize>
  1.1448 -        </j2seproject3:junit>
  1.1449 -    </target>
  1.1450 -    <!--
  1.1451 -                end of pre NB72 profiling section
  1.1452 -            -->
  1.1453 -    <target if="netbeans.home" name="-profile-check">
  1.1454 -        <condition property="profiler.configured">
  1.1455 -            <or>
  1.1456 -                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
  1.1457 -                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
  1.1458 -            </or>
  1.1459 -        </condition>
  1.1460 -    </target>
  1.1461 -    <target depends="-profile-check,-profile-pre72" description="Profile a project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
  1.1462 -        <startprofiler/>
  1.1463 -        <antcall target="run"/>
  1.1464 -    </target>
  1.1465 -    <target depends="-profile-check,-profile-single-pre72" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-single" unless="profiler.info.jvmargs.agent">
  1.1466 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1.1467 -        <startprofiler/>
  1.1468 -        <antcall target="run-single"/>
  1.1469 -    </target>
  1.1470 -    <target depends="-profile-test-single-pre72" description="Profile a selected test in the IDE." name="profile-test-single"/>
  1.1471 -    <target depends="-profile-check" description="Profile a selected test in the IDE." if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs">
  1.1472 -        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
  1.1473 -        <startprofiler/>
  1.1474 -        <antcall target="test-single"/>
  1.1475 -    </target>
  1.1476 -    <target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
  1.1477 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1.1478 -        <startprofiler/>
  1.1479 -        <antcall target="run-test-with-main"/>
  1.1480 -    </target>
  1.1481 -    <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
  1.1482 -        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1.1483 -        <startprofiler/>
  1.1484 -        <antcall target="run-applet"/>
  1.1485 -    </target>
  1.1486 -    <!--
  1.1487 -                ===============
  1.1488 -                JAVADOC SECTION
  1.1489 -                ===============
  1.1490 -            -->
  1.1491 -    <target depends="init" if="have.sources" name="-javadoc-build">
  1.1492 -        <mkdir dir="${dist.javadoc.dir}"/>
  1.1493 -        <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
  1.1494 -            <and>
  1.1495 -                <isset property="endorsed.classpath.cmd.line.arg"/>
  1.1496 -                <not>
  1.1497 -                    <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
  1.1498 -                </not>
  1.1499 -            </and>
  1.1500 -        </condition>
  1.1501 -        <condition else="" property="bug5101868workaround" value="*.java">
  1.1502 -            <matches pattern="1\.[56](\..*)?" string="${java.version}"/>
  1.1503 -        </condition>
  1.1504 -        <condition else="" property="javadoc.html5.cmd.line.arg" value="-html5">
  1.1505 -            <and>
  1.1506 -                <isset property="javadoc.html5"/>
  1.1507 -                <available file="${jdk.home}${file.separator}lib${file.separator}jrt-fs.jar"/>
  1.1508 -            </and>
  1.1509 -        </condition>
  1.1510 -        <javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${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}">
  1.1511 -            <classpath>
  1.1512 -                <path path="${javac.classpath}"/>
  1.1513 -            </classpath>
  1.1514 -            <fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
  1.1515 -                <filename name="**/*.java"/>
  1.1516 -            </fileset>
  1.1517 -            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
  1.1518 -                <include name="**/*.java"/>
  1.1519 -                <exclude name="*.java"/>
  1.1520 -            </fileset>
  1.1521 -            <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
  1.1522 -            <arg line="${javadoc.html5.cmd.line.arg}"/>
  1.1523 -        </javadoc>
  1.1524 -        <copy todir="${dist.javadoc.dir}">
  1.1525 -            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
  1.1526 -                <filename name="**/doc-files/**"/>
  1.1527 -            </fileset>
  1.1528 -            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
  1.1529 -                <include name="**/doc-files/**"/>
  1.1530 -            </fileset>
  1.1531 -        </copy>
  1.1532 -    </target>
  1.1533 -    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
  1.1534 -        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
  1.1535 -    </target>
  1.1536 -    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
  1.1537 -    <!--
  1.1538 -                =========================
  1.1539 -                TEST COMPILATION SECTION
  1.1540 -                =========================
  1.1541 -            -->
  1.1542 -    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
  1.1543 -        <mkdir dir="${build.test.classes.dir}"/>
  1.1544 -    </target>
  1.1545 -    <target name="-pre-compile-test">
  1.1546 -        <!-- Empty placeholder for easier customization. -->
  1.1547 -        <!-- You can override this target in the ../build.xml file. -->
  1.1548 -    </target>
  1.1549 -    <target depends="-init-source-module-properties" if="named.module.internal" name="-init-test-javac-module-properties-with-module">
  1.1550 -        <j2seproject3:modulename property="test.module.name" sourcepath="${test.src.dir}"/>
  1.1551 -        <condition else="${empty.dir}" property="javac.test.sourcepath" value="${test.src.dir}">
  1.1552 -            <and>
  1.1553 -                <isset property="test.module.name"/>
  1.1554 -                <length length="0" string="${test.module.name}" when="greater"/>
  1.1555 -            </and>
  1.1556 -        </condition>
  1.1557 -        <condition else="--patch-module ${module.name}=${test.src.dir} --add-reads ${module.name}=ALL-UNNAMED" property="javac.test.compilerargs" value="--add-reads ${test.module.name}=ALL-UNNAMED">
  1.1558 -            <and>
  1.1559 -                <isset property="test.module.name"/>
  1.1560 -                <length length="0" string="${test.module.name}" when="greater"/>
  1.1561 -            </and>
  1.1562 -        </condition>
  1.1563 -    </target>
  1.1564 -    <target depends="-init-source-module-properties" if="named.module.internal" name="-init-test-run-module-properties">
  1.1565 -        <condition else="${module.name}" property="run.test.addexport.source.module.internal" value="${test.module.name}">
  1.1566 -            <and>
  1.1567 -                <isset property="test.module.name"/>
  1.1568 -                <length length="0" string="${test.module.name}" when="greater"/>
  1.1569 -            </and>
  1.1570 -        </condition>
  1.1571 -        <fileset dir="${build.test.classes.dir}" id="run.test.packages.internal" includes="**/*.class"/>
  1.1572 -        <property location="${build.test.classes.dir}" name="build.test.classes.dir.abs.internal"/>
  1.1573 -        <pathconvert pathsep=" " property="run.test.addexports.internal" refid="run.test.packages.internal">
  1.1574 -            <chainedmapper>
  1.1575 -                <regexpmapper from="^(.*)\Q${file.separator}\E.*\.class$$" to="\1"/>
  1.1576 -                <filtermapper>
  1.1577 -                    <uniqfilter/>
  1.1578 -                    <replacestring from="${build.test.classes.dir.abs.internal}" to=""/>
  1.1579 -                </filtermapper>
  1.1580 -                <cutdirsmapper dirs="1"/>
  1.1581 -                <packagemapper from="*" to="--add-exports ${run.test.addexport.source.module.internal}/*=ALL-UNNAMED"/>
  1.1582 -            </chainedmapper>
  1.1583 -        </pathconvert>
  1.1584 -        <condition else="--patch-module ${module.name}=${build.test.classes.dir} --add-modules ${module.name} --add-reads ${module.name}=ALL-UNNAMED ${run.test.addexports.internal}" property="run.test.jvmargs" value="--add-modules ${test.module.name} --add-reads ${test.module.name}=ALL-UNNAMED ${run.test.addexports.internal}">
  1.1585 -            <and>
  1.1586 -                <isset property="test.module.name"/>
  1.1587 -                <length length="0" string="${test.module.name}" when="greater"/>
  1.1588 -            </and>
  1.1589 -        </condition>
  1.1590 -    </target>
  1.1591 -    <target depends="-init-source-module-properties" name="-init-test-module-properties-without-module" unless="named.module.internal">
  1.1592 -        <property name="javac.test.sourcepath" value="${empty.dir}"/>
  1.1593 -        <property name="javac.test.compilerargs" value=""/>
  1.1594 -        <property name="run.test.jvmargs" value=""/>
  1.1595 -    </target>
  1.1596 -    <target depends="-init-test-javac-module-properties-with-module,-init-test-module-properties-without-module" name="-init-test-module-properties"/>
  1.1597 -    <target if="do.depend.true" name="-compile-test-depend">
  1.1598 -        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
  1.1599 -    </target>
  1.1600 -    <target depends="init,deps-jar,compile,-init-test-module-properties,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
  1.1601 -        <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" modulepath="${javac.test.modulepath}" processorpath="${javac.test.processorpath}" sourcepath="${javac.test.sourcepath}" srcdir="${test.src.dir}">
  1.1602 -            <customize>
  1.1603 -                <compilerarg line="${javac.test.compilerargs}"/>
  1.1604 -            </customize>
  1.1605 -        </j2seproject3:javac>
  1.1606 -        <copy todir="${build.test.classes.dir}">
  1.1607 -            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
  1.1608 -        </copy>
  1.1609 -    </target>
  1.1610 -    <target name="-post-compile-test">
  1.1611 -        <!-- Empty placeholder for easier customization. -->
  1.1612 -        <!-- You can override this target in the ../build.xml file. -->
  1.1613 -    </target>
  1.1614 -    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
  1.1615 -    <target name="-pre-compile-test-single">
  1.1616 -        <!-- Empty placeholder for easier customization. -->
  1.1617 -        <!-- You can override this target in the ../build.xml file. -->
  1.1618 -    </target>
  1.1619 -    <target depends="init,deps-jar,compile,-init-test-module-properties,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
  1.1620 -        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
  1.1621 -        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
  1.1622 -        <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}, module-info.java" modulepath="${javac.test.modulepath}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}">
  1.1623 -            <customize>
  1.1624 -                <compilerarg line="${javac.test.compilerargs}"/>
  1.1625 -            </customize>
  1.1626 -        </j2seproject3:javac>
  1.1627 -        <copy todir="${build.test.classes.dir}">
  1.1628 -            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
  1.1629 -        </copy>
  1.1630 -    </target>
  1.1631 -    <target name="-post-compile-test-single">
  1.1632 -        <!-- Empty placeholder for easier customization. -->
  1.1633 -        <!-- You can override this target in the ../build.xml file. -->
  1.1634 -    </target>
  1.1635 -    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
  1.1636 -    <!--
  1.1637 -                =======================
  1.1638 -                TEST EXECUTION SECTION
  1.1639 -                =======================
  1.1640 -            -->
  1.1641 -    <target depends="init" if="have.tests" name="-pre-test-run">
  1.1642 -        <mkdir dir="${build.test.results.dir}"/>
  1.1643 -    </target>
  1.1644 -    <target depends="init,compile-test,-init-test-run-module-properties,-pre-test-run" if="have.tests" name="-do-test-run">
  1.1645 -        <j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
  1.1646 -    </target>
  1.1647 -    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
  1.1648 -        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1.1649 -    </target>
  1.1650 -    <target depends="init" if="have.tests" name="test-report"/>
  1.1651 -    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
  1.1652 -    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
  1.1653 -    <target depends="init" if="have.tests" name="-pre-test-run-single">
  1.1654 -        <mkdir dir="${build.test.results.dir}"/>
  1.1655 -    </target>
  1.1656 -    <target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
  1.1657 -        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
  1.1658 -        <j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
  1.1659 -    </target>
  1.1660 -    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
  1.1661 -        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1.1662 -    </target>
  1.1663 -    <target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
  1.1664 -    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
  1.1665 -        <fail unless="test.class">Must select some files in the IDE or set test.class</fail>
  1.1666 -        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
  1.1667 -        <j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
  1.1668 -    </target>
  1.1669 -    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
  1.1670 -        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1.1671 -    </target>
  1.1672 -    <target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
  1.1673 -    <!--
  1.1674 -                =======================
  1.1675 -                TEST DEBUGGING SECTION
  1.1676 -                =======================
  1.1677 -            -->
  1.1678 -    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
  1.1679 -        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
  1.1680 -        <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
  1.1681 -    </target>
  1.1682 -    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
  1.1683 -        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
  1.1684 -        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
  1.1685 -        <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
  1.1686 -    </target>
  1.1687 -    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
  1.1688 -        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
  1.1689 -    </target>
  1.1690 -    <target depends="init,compile-test-single,-init-test-run-module-properties,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
  1.1691 -    <target depends="init,compile-test-single,-init-test-run-module-properties,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
  1.1692 -    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
  1.1693 -        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
  1.1694 -    </target>
  1.1695 -    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
  1.1696 -    <!--
  1.1697 -                =========================
  1.1698 -                APPLET EXECUTION SECTION
  1.1699 -                =========================
  1.1700 -            -->
  1.1701 -    <target depends="init,compile-single" name="run-applet">
  1.1702 -        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1.1703 -        <j2seproject1:java classname="sun.applet.AppletViewer">
  1.1704 -            <customize>
  1.1705 -                <arg value="${applet.url}"/>
  1.1706 -            </customize>
  1.1707 -        </j2seproject1:java>
  1.1708 -    </target>
  1.1709 -    <!--
  1.1710 -                =========================
  1.1711 -                APPLET DEBUGGING  SECTION
  1.1712 -                =========================
  1.1713 -            -->
  1.1714 -    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
  1.1715 -        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1.1716 -        <j2seproject3:debug classname="sun.applet.AppletViewer">
  1.1717 -            <customizeDebuggee>
  1.1718 -                <arg value="${applet.url}"/>
  1.1719 -            </customizeDebuggee>
  1.1720 -        </j2seproject3:debug>
  1.1721 -    </target>
  1.1722 -    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
  1.1723 -    <!--
  1.1724 -                ===============
  1.1725 -                CLEANUP SECTION
  1.1726 -                ===============
  1.1727 -            -->
  1.1728 -    <target name="-deps-clean-init" unless="built-clean.properties">
  1.1729 -        <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
  1.1730 -        <delete file="${built-clean.properties}" quiet="true"/>
  1.1731 -    </target>
  1.1732 -    <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
  1.1733 -        <echo level="warn" message="Cycle detected: livedb was already built"/>
  1.1734 -    </target>
  1.1735 -    <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
  1.1736 -        <mkdir dir="${build.dir}"/>
  1.1737 -        <touch file="${built-clean.properties}" verbose="false"/>
  1.1738 -        <property file="${built-clean.properties}" prefix="already.built.clean."/>
  1.1739 -        <antcall target="-warn-already-built-clean"/>
  1.1740 -        <propertyfile file="${built-clean.properties}">
  1.1741 -            <entry key="${basedir}" value=""/>
  1.1742 -        </propertyfile>
  1.1743 -    </target>
  1.1744 -    <target depends="init" name="-do-clean">
  1.1745 -        <delete dir="${build.dir}"/>
  1.1746 -        <delete dir="${dist.jlink.output}"/>
  1.1747 -        <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
  1.1748 -    </target>
  1.1749 -    <target name="-post-clean">
  1.1750 -        <!-- Empty placeholder for easier customization. -->
  1.1751 -        <!-- You can override this target in the ../build.xml file. -->
  1.1752 -    </target>
  1.1753 -    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
  1.1754 -    <target name="-check-call-dep">
  1.1755 -        <property file="${call.built.properties}" prefix="already.built."/>
  1.1756 -        <condition property="should.call.dep">
  1.1757 -            <and>
  1.1758 -                <not>
  1.1759 -                    <isset property="already.built.${call.subproject}"/>
  1.1760 -                </not>
  1.1761 -                <available file="${call.script}"/>
  1.1762 -            </and>
  1.1763 -        </condition>
  1.1764 -    </target>
  1.1765 -    <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
  1.1766 -        <ant antfile="${call.script}" inheritall="false" target="${call.target}">
  1.1767 -            <propertyset>
  1.1768 -                <propertyref prefix="transfer."/>
  1.1769 -                <mapper from="transfer.*" to="*" type="glob"/>
  1.1770 -            </propertyset>
  1.1771 -        </ant>
  1.1772 -    </target>
  1.1773 -</project>