sandbox/old-modules/server/indexer/nbproject/build-impl.xml
branchdonation_review
changeset 1043 57843026e60b
parent 1027 205b7632914c
parent 1040 f7b6892fd754
child 1044 7feb751ba76b
     1.1 --- a/sandbox/old-modules/server/indexer/nbproject/build-impl.xml	Mon Dec 19 11:37:36 2016 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,914 +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 -  - junit compilation
    1.19 -  - junit execution
    1.20 -  - junit debugging
    1.21 -  - applet
    1.22 -  - cleanup
    1.23 -
    1.24 -        -->
    1.25 -<project 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" basedir=".." default="default" name="indexer-impl">
    1.26 -    <fail message="Please build using Ant 1.7.1 or higher.">
    1.27 -        <condition>
    1.28 -            <not>
    1.29 -                <antversion atleast="1.7.1"/>
    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 name="-pre-init-libraries">
    1.49 -        <property location="../lib/nblibraries.properties" name="libraries.path"/>
    1.50 -        <dirname file="${libraries.path}" property="libraries.dir.nativedirsep"/>
    1.51 -        <pathconvert dirsep="/" property="libraries.dir">
    1.52 -            <path path="${libraries.dir.nativedirsep}"/>
    1.53 -        </pathconvert>
    1.54 -        <basename file="${libraries.path}" property="libraries.basename" suffix=".properties"/>
    1.55 -        <available file="${libraries.dir}/${libraries.basename}-private.properties" property="private.properties.available"/>
    1.56 -    </target>
    1.57 -    <target depends="-pre-init-libraries" if="private.properties.available" name="-init-private-libraries">
    1.58 -        <loadproperties encoding="ISO-8859-1" srcfile="${libraries.dir}/${libraries.basename}-private.properties">
    1.59 -            <filterchain>
    1.60 -                <replacestring from="$${base}" to="${libraries.dir}"/>
    1.61 -                <escapeunicode/>
    1.62 -            </filterchain>
    1.63 -        </loadproperties>
    1.64 -    </target>
    1.65 -    <target depends="-pre-init,-init-private,-init-private-libraries" name="-init-libraries">
    1.66 -        <loadproperties encoding="ISO-8859-1" srcfile="${libraries.path}">
    1.67 -            <filterchain>
    1.68 -                <replacestring from="$${base}" to="${libraries.dir}"/>
    1.69 -                <escapeunicode/>
    1.70 -            </filterchain>
    1.71 -        </loadproperties>
    1.72 -    </target>
    1.73 -    <target depends="-pre-init,-init-private,-init-libraries" name="-init-user">
    1.74 -        <property file="${user.properties.file}"/>
    1.75 -        <!-- The two properties below are usually overridden -->
    1.76 -        <!-- by the active platform. Just a fallback. -->
    1.77 -        <property name="default.javac.source" value="1.4"/>
    1.78 -        <property name="default.javac.target" value="1.4"/>
    1.79 -    </target>
    1.80 -    <target depends="-pre-init,-init-private,-init-libraries,-init-user" name="-init-project">
    1.81 -        <property file="nbproject/configs/${config}.properties"/>
    1.82 -        <property file="nbproject/project.properties"/>
    1.83 -    </target>
    1.84 -    <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-init-macrodef-property" name="-do-init">
    1.85 -        <available file="${manifest.file}" property="manifest.available"/>
    1.86 -        <condition property="main.class.available">
    1.87 -            <and>
    1.88 -                <isset property="main.class"/>
    1.89 -                <not>
    1.90 -                    <equals arg1="${main.class}" arg2="" trim="true"/>
    1.91 -                </not>
    1.92 -            </and>
    1.93 -        </condition>
    1.94 -        <condition property="manifest.available+main.class">
    1.95 -            <and>
    1.96 -                <isset property="manifest.available"/>
    1.97 -                <isset property="main.class.available"/>
    1.98 -            </and>
    1.99 -        </condition>
   1.100 -        <condition property="do.mkdist">
   1.101 -            <and>
   1.102 -                <isset property="libs.CopyLibs.classpath"/>
   1.103 -                <not>
   1.104 -                    <istrue value="${mkdist.disabled}"/>
   1.105 -                </not>
   1.106 -            </and>
   1.107 -        </condition>
   1.108 -        <condition property="manifest.available+main.class+mkdist.available">
   1.109 -            <and>
   1.110 -                <istrue value="${manifest.available+main.class}"/>
   1.111 -                <isset property="do.mkdist"/>
   1.112 -            </and>
   1.113 -        </condition>
   1.114 -        <condition property="manifest.available+mkdist.available">
   1.115 -            <and>
   1.116 -                <istrue value="${manifest.available}"/>
   1.117 -                <isset property="do.mkdist"/>
   1.118 -            </and>
   1.119 -        </condition>
   1.120 -        <condition property="manifest.available-mkdist.available">
   1.121 -            <or>
   1.122 -                <istrue value="${manifest.available}"/>
   1.123 -                <isset property="do.mkdist"/>
   1.124 -            </or>
   1.125 -        </condition>
   1.126 -        <condition property="manifest.available+main.class-mkdist.available">
   1.127 -            <or>
   1.128 -                <istrue value="${manifest.available+main.class}"/>
   1.129 -                <isset property="do.mkdist"/>
   1.130 -            </or>
   1.131 -        </condition>
   1.132 -        <condition property="have.tests">
   1.133 -            <or>
   1.134 -                <available file="${test.src.dir}"/>
   1.135 -            </or>
   1.136 -        </condition>
   1.137 -        <condition property="have.sources">
   1.138 -            <or>
   1.139 -                <available file="${src.dir}"/>
   1.140 -            </or>
   1.141 -        </condition>
   1.142 -        <condition property="netbeans.home+have.tests">
   1.143 -            <and>
   1.144 -                <isset property="netbeans.home"/>
   1.145 -                <isset property="have.tests"/>
   1.146 -            </and>
   1.147 -        </condition>
   1.148 -        <condition property="no.javadoc.preview">
   1.149 -            <and>
   1.150 -                <isset property="javadoc.preview"/>
   1.151 -                <isfalse value="${javadoc.preview}"/>
   1.152 -            </and>
   1.153 -        </condition>
   1.154 -        <property name="run.jvmargs" value=""/>
   1.155 -        <property name="javac.compilerargs" value=""/>
   1.156 -        <property name="work.dir" value="${basedir}"/>
   1.157 -        <condition property="no.deps">
   1.158 -            <and>
   1.159 -                <istrue value="${no.dependencies}"/>
   1.160 -            </and>
   1.161 -        </condition>
   1.162 -        <property name="javac.debug" value="true"/>
   1.163 -        <property name="javadoc.preview" value="true"/>
   1.164 -        <property name="application.args" value=""/>
   1.165 -        <property name="source.encoding" value="${file.encoding}"/>
   1.166 -        <property name="runtime.encoding" value="${source.encoding}"/>
   1.167 -        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
   1.168 -            <and>
   1.169 -                <isset property="javadoc.encoding"/>
   1.170 -                <not>
   1.171 -                    <equals arg1="${javadoc.encoding}" arg2=""/>
   1.172 -                </not>
   1.173 -            </and>
   1.174 -        </condition>
   1.175 -        <property name="javadoc.encoding.used" value="${source.encoding}"/>
   1.176 -        <property name="includes" value="**"/>
   1.177 -        <property name="excludes" value=""/>
   1.178 -        <property name="do.depend" value="false"/>
   1.179 -        <condition property="do.depend.true">
   1.180 -            <istrue value="${do.depend}"/>
   1.181 -        </condition>
   1.182 -        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
   1.183 -        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
   1.184 -            <length length="0" string="${endorsed.classpath}" when="greater"/>
   1.185 -        </condition>
   1.186 -        <property name="javac.fork" value="false"/>
   1.187 -    </target>
   1.188 -    <target name="-post-init">
   1.189 -        <!-- Empty placeholder for easier customization. -->
   1.190 -        <!-- You can override this target in the ../build.xml file. -->
   1.191 -    </target>
   1.192 -    <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-do-init" name="-init-check">
   1.193 -        <fail unless="src.dir">Must set src.dir</fail>
   1.194 -        <fail unless="test.src.dir">Must set test.src.dir</fail>
   1.195 -        <fail unless="build.dir">Must set build.dir</fail>
   1.196 -        <fail unless="dist.dir">Must set dist.dir</fail>
   1.197 -        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
   1.198 -        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
   1.199 -        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
   1.200 -        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
   1.201 -        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
   1.202 -        <fail unless="dist.jar">Must set dist.jar</fail>
   1.203 -    </target>
   1.204 -    <target name="-init-macrodef-property">
   1.205 -        <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.206 -            <attribute name="name"/>
   1.207 -            <attribute name="value"/>
   1.208 -            <sequential>
   1.209 -                <property name="@{name}" value="${@{value}}"/>
   1.210 -            </sequential>
   1.211 -        </macrodef>
   1.212 -    </target>
   1.213 -    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
   1.214 -        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.215 -            <attribute default="${src.dir}" name="srcdir"/>
   1.216 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.217 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.218 -            <attribute default="${javac.processorpath}" name="processorpath"/>
   1.219 -            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   1.220 -            <attribute default="${includes}" name="includes"/>
   1.221 -            <attribute default="${excludes}" name="excludes"/>
   1.222 -            <attribute default="${javac.debug}" name="debug"/>
   1.223 -            <attribute default="${empty.dir}" name="sourcepath"/>
   1.224 -            <attribute default="${empty.dir}" name="gensrcdir"/>
   1.225 -            <element name="customize" optional="true"/>
   1.226 -            <sequential>
   1.227 -                <property location="${build.dir}/empty" name="empty.dir"/>
   1.228 -                <mkdir dir="${empty.dir}"/>
   1.229 -                <mkdir dir="@{apgeneratedsrcdir}"/>
   1.230 -                <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.231 -                    <src>
   1.232 -                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   1.233 -                            <include name="*"/>
   1.234 -                        </dirset>
   1.235 -                    </src>
   1.236 -                    <classpath>
   1.237 -                        <path path="@{classpath}"/>
   1.238 -                    </classpath>
   1.239 -                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.240 -                    <compilerarg line="${javac.compilerargs}"/>
   1.241 -                    <compilerarg value="-processorpath"/>
   1.242 -                    <compilerarg path="@{processorpath}"/>
   1.243 -                    <compilerarg line="${ap.processors.internal}"/>
   1.244 -                    <compilerarg value="-s"/>
   1.245 -                    <compilerarg path="@{apgeneratedsrcdir}"/>
   1.246 -                    <compilerarg line="${ap.proc.none.internal}"/>
   1.247 -                    <customize/>
   1.248 -                </javac>
   1.249 -            </sequential>
   1.250 -        </macrodef>
   1.251 -    </target>
   1.252 -    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
   1.253 -        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.254 -            <attribute default="${src.dir}" name="srcdir"/>
   1.255 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.256 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.257 -            <attribute default="${javac.processorpath}" name="processorpath"/>
   1.258 -            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   1.259 -            <attribute default="${includes}" name="includes"/>
   1.260 -            <attribute default="${excludes}" name="excludes"/>
   1.261 -            <attribute default="${javac.debug}" name="debug"/>
   1.262 -            <attribute default="${empty.dir}" name="sourcepath"/>
   1.263 -            <attribute default="${empty.dir}" name="gensrcdir"/>
   1.264 -            <element name="customize" optional="true"/>
   1.265 -            <sequential>
   1.266 -                <property location="${build.dir}/empty" name="empty.dir"/>
   1.267 -                <mkdir dir="${empty.dir}"/>
   1.268 -                <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.269 -                    <src>
   1.270 -                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   1.271 -                            <include name="*"/>
   1.272 -                        </dirset>
   1.273 -                    </src>
   1.274 -                    <classpath>
   1.275 -                        <path path="@{classpath}"/>
   1.276 -                    </classpath>
   1.277 -                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.278 -                    <compilerarg line="${javac.compilerargs}"/>
   1.279 -                    <customize/>
   1.280 -                </javac>
   1.281 -            </sequential>
   1.282 -        </macrodef>
   1.283 -    </target>
   1.284 -    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
   1.285 -        <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.286 -            <attribute default="${src.dir}" name="srcdir"/>
   1.287 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.288 -            <attribute default="${javac.classpath}" name="classpath"/>
   1.289 -            <sequential>
   1.290 -                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
   1.291 -                    <classpath>
   1.292 -                        <path path="@{classpath}"/>
   1.293 -                    </classpath>
   1.294 -                </depend>
   1.295 -            </sequential>
   1.296 -        </macrodef>
   1.297 -        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.298 -            <attribute default="${build.classes.dir}" name="destdir"/>
   1.299 -            <sequential>
   1.300 -                <fail unless="javac.includes">Must set javac.includes</fail>
   1.301 -                <pathconvert pathsep="," property="javac.includes.binary">
   1.302 -                    <path>
   1.303 -                        <filelist dir="@{destdir}" files="${javac.includes}"/>
   1.304 -                    </path>
   1.305 -                    <globmapper from="*.java" to="*.class"/>
   1.306 -                </pathconvert>
   1.307 -                <delete>
   1.308 -                    <files includes="${javac.includes.binary}"/>
   1.309 -                </delete>
   1.310 -            </sequential>
   1.311 -        </macrodef>
   1.312 -    </target>
   1.313 -    <target name="-init-macrodef-junit">
   1.314 -        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.315 -            <attribute default="${includes}" name="includes"/>
   1.316 -            <attribute default="${excludes}" name="excludes"/>
   1.317 -            <attribute default="**" name="testincludes"/>
   1.318 -            <sequential>
   1.319 -                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
   1.320 -                    <batchtest todir="${build.test.results.dir}">
   1.321 -                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   1.322 -                            <filename name="@{testincludes}"/>
   1.323 -                        </fileset>
   1.324 -                    </batchtest>
   1.325 -                    <classpath>
   1.326 -                        <path path="${run.test.classpath}"/>
   1.327 -                    </classpath>
   1.328 -                    <syspropertyset>
   1.329 -                        <propertyref prefix="test-sys-prop."/>
   1.330 -                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.331 -                    </syspropertyset>
   1.332 -                    <formatter type="brief" usefile="false"/>
   1.333 -                    <formatter type="xml"/>
   1.334 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.335 -                    <jvmarg line="${run.jvmargs}"/>
   1.336 -                </junit>
   1.337 -            </sequential>
   1.338 -        </macrodef>
   1.339 -    </target>
   1.340 -    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
   1.341 -        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.342 -            <attribute default="${main.class}" name="name"/>
   1.343 -            <attribute default="${debug.classpath}" name="classpath"/>
   1.344 -            <attribute default="" name="stopclassname"/>
   1.345 -            <sequential>
   1.346 -                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
   1.347 -                    <classpath>
   1.348 -                        <path path="@{classpath}"/>
   1.349 -                    </classpath>
   1.350 -                </nbjpdastart>
   1.351 -            </sequential>
   1.352 -        </macrodef>
   1.353 -        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.354 -            <attribute default="${build.classes.dir}" name="dir"/>
   1.355 -            <sequential>
   1.356 -                <nbjpdareload>
   1.357 -                    <fileset dir="@{dir}" includes="${fix.classes}">
   1.358 -                        <include name="${fix.includes}*.class"/>
   1.359 -                    </fileset>
   1.360 -                </nbjpdareload>
   1.361 -            </sequential>
   1.362 -        </macrodef>
   1.363 -    </target>
   1.364 -    <target name="-init-debug-args">
   1.365 -        <property name="version-output" value="java version &quot;${ant.java.version}"/>
   1.366 -        <condition property="have-jdk-older-than-1.4">
   1.367 -            <or>
   1.368 -                <contains string="${version-output}" substring="java version &quot;1.0"/>
   1.369 -                <contains string="${version-output}" substring="java version &quot;1.1"/>
   1.370 -                <contains string="${version-output}" substring="java version &quot;1.2"/>
   1.371 -                <contains string="${version-output}" substring="java version &quot;1.3"/>
   1.372 -            </or>
   1.373 -        </condition>
   1.374 -        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
   1.375 -            <istrue value="${have-jdk-older-than-1.4}"/>
   1.376 -        </condition>
   1.377 -        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
   1.378 -            <os family="windows"/>
   1.379 -        </condition>
   1.380 -        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
   1.381 -            <isset property="debug.transport"/>
   1.382 -        </condition>
   1.383 -    </target>
   1.384 -    <target depends="-init-debug-args" name="-init-macrodef-debug">
   1.385 -        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   1.386 -            <attribute default="${main.class}" name="classname"/>
   1.387 -            <attribute default="${debug.classpath}" name="classpath"/>
   1.388 -            <element name="customize" optional="true"/>
   1.389 -            <sequential>
   1.390 -                <java classname="@{classname}" dir="${work.dir}" fork="true">
   1.391 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.392 -                    <jvmarg line="${debug-args-line}"/>
   1.393 -                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
   1.394 -                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   1.395 -                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   1.396 -                    <jvmarg line="${run.jvmargs}"/>
   1.397 -                    <classpath>
   1.398 -                        <path path="@{classpath}"/>
   1.399 -                    </classpath>
   1.400 -                    <syspropertyset>
   1.401 -                        <propertyref prefix="run-sys-prop."/>
   1.402 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.403 -                    </syspropertyset>
   1.404 -                    <customize/>
   1.405 -                </java>
   1.406 -            </sequential>
   1.407 -        </macrodef>
   1.408 -    </target>
   1.409 -    <target name="-init-macrodef-java">
   1.410 -        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.411 -            <attribute default="${main.class}" name="classname"/>
   1.412 -            <attribute default="${run.classpath}" name="classpath"/>
   1.413 -            <element name="customize" optional="true"/>
   1.414 -            <sequential>
   1.415 -                <java classname="@{classname}" dir="${work.dir}" fork="true">
   1.416 -                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   1.417 -                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   1.418 -                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   1.419 -                    <jvmarg line="${run.jvmargs}"/>
   1.420 -                    <classpath>
   1.421 -                        <path path="@{classpath}"/>
   1.422 -                    </classpath>
   1.423 -                    <syspropertyset>
   1.424 -                        <propertyref prefix="run-sys-prop."/>
   1.425 -                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   1.426 -                    </syspropertyset>
   1.427 -                    <customize/>
   1.428 -                </java>
   1.429 -            </sequential>
   1.430 -        </macrodef>
   1.431 -    </target>
   1.432 -    <target name="-init-presetdef-jar">
   1.433 -        <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
   1.434 -            <jar compress="${jar.compress}" jarfile="${dist.jar}">
   1.435 -                <j2seproject1:fileset dir="${build.classes.dir}"/>
   1.436 -            </jar>
   1.437 -        </presetdef>
   1.438 -    </target>
   1.439 -    <target name="-init-ap-cmdline-properties">
   1.440 -        <property name="annotation.processing.enabled" value="true"/>
   1.441 -        <property name="annotation.processing.processors.list" value=""/>
   1.442 -        <property name="annotation.processing.run.all.processors" value="true"/>
   1.443 -        <property name="javac.processorpath" value="${javac.classpath}"/>
   1.444 -        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
   1.445 -        <condition property="ap.supported.internal" value="true">
   1.446 -            <not>
   1.447 -                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
   1.448 -            </not>
   1.449 -        </condition>
   1.450 -    </target>
   1.451 -    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
   1.452 -        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
   1.453 -            <isfalse value="${annotation.processing.run.all.processors}"/>
   1.454 -        </condition>
   1.455 -        <condition else="" property="ap.proc.none.internal" value="-proc:none">
   1.456 -            <isfalse value="${annotation.processing.enabled}"/>
   1.457 -        </condition>
   1.458 -    </target>
   1.459 -    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
   1.460 -        <property name="ap.cmd.line.internal" value=""/>
   1.461 -    </target>
   1.462 -    <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
   1.463 -    <!--
   1.464 -                ===================
   1.465 -                COMPILATION SECTION
   1.466 -                ===================
   1.467 -            -->
   1.468 -    <target name="-deps-jar-init" unless="built-jar.properties">
   1.469 -        <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
   1.470 -        <delete file="${built-jar.properties}" quiet="true"/>
   1.471 -    </target>
   1.472 -    <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
   1.473 -        <echo level="warn" message="Cycle detected: indexer was already built"/>
   1.474 -    </target>
   1.475 -    <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
   1.476 -        <mkdir dir="${build.dir}"/>
   1.477 -        <touch file="${built-jar.properties}" verbose="false"/>
   1.478 -        <property file="${built-jar.properties}" prefix="already.built.jar."/>
   1.479 -        <antcall target="-warn-already-built-jar"/>
   1.480 -        <propertyfile file="${built-jar.properties}">
   1.481 -            <entry key="${basedir}" value=""/>
   1.482 -        </propertyfile>
   1.483 -        <antcall target="-maybe-call-dep">
   1.484 -            <param name="call.built.properties" value="${built-jar.properties}"/>
   1.485 -            <param location="${project.org_netbeans_modules_jackpot30_api}" name="call.subproject"/>
   1.486 -            <param location="${project.org_netbeans_modules_jackpot30_api}/build.xml" name="call.script"/>
   1.487 -            <param name="call.target" value="netbeans"/>
   1.488 -            <param name="transfer.built-jar.properties" value="${built-jar.properties}"/>
   1.489 -        </antcall>
   1.490 -    </target>
   1.491 -    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
   1.492 -    <target depends="init" name="-check-automatic-build">
   1.493 -        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
   1.494 -    </target>
   1.495 -    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
   1.496 -        <antcall target="clean"/>
   1.497 -    </target>
   1.498 -    <target depends="init,deps-jar" name="-pre-pre-compile">
   1.499 -        <mkdir dir="${build.classes.dir}"/>
   1.500 -    </target>
   1.501 -    <target name="-pre-compile">
   1.502 -        <!-- Empty placeholder for easier customization. -->
   1.503 -        <!-- You can override this target in the ../build.xml file. -->
   1.504 -    </target>
   1.505 -    <target if="do.depend.true" name="-compile-depend">
   1.506 -        <pathconvert property="build.generated.subdirs">
   1.507 -            <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
   1.508 -                <include name="*"/>
   1.509 -            </dirset>
   1.510 -        </pathconvert>
   1.511 -        <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
   1.512 -    </target>
   1.513 -    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-compile-depend" if="have.sources" name="-do-compile">
   1.514 -        <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
   1.515 -        <copy todir="${build.classes.dir}">
   1.516 -            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   1.517 -        </copy>
   1.518 -    </target>
   1.519 -    <target name="-post-compile">
   1.520 -        <!-- Empty placeholder for easier customization. -->
   1.521 -        <!-- You can override this target in the ../build.xml file. -->
   1.522 -    </target>
   1.523 -    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
   1.524 -    <target name="-pre-compile-single">
   1.525 -        <!-- Empty placeholder for easier customization. -->
   1.526 -        <!-- You can override this target in the ../build.xml file. -->
   1.527 -    </target>
   1.528 -    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
   1.529 -        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   1.530 -        <j2seproject3:force-recompile/>
   1.531 -        <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
   1.532 -    </target>
   1.533 -    <target name="-post-compile-single">
   1.534 -        <!-- Empty placeholder for easier customization. -->
   1.535 -        <!-- You can override this target in the ../build.xml file. -->
   1.536 -    </target>
   1.537 -    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
   1.538 -    <!--
   1.539 -                ====================
   1.540 -                JAR BUILDING SECTION
   1.541 -                ====================
   1.542 -            -->
   1.543 -    <target depends="init" name="-pre-pre-jar">
   1.544 -        <dirname file="${dist.jar}" property="dist.jar.dir"/>
   1.545 -        <mkdir dir="${dist.jar.dir}"/>
   1.546 -    </target>
   1.547 -    <target name="-pre-jar">
   1.548 -        <!-- Empty placeholder for easier customization. -->
   1.549 -        <!-- You can override this target in the ../build.xml file. -->
   1.550 -    </target>
   1.551 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available">
   1.552 -        <j2seproject1:jar/>
   1.553 -    </target>
   1.554 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class-mkdist.available">
   1.555 -        <j2seproject1:jar manifest="${manifest.file}"/>
   1.556 -    </target>
   1.557 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
   1.558 -        <j2seproject1:jar manifest="${manifest.file}">
   1.559 -            <j2seproject1:manifest>
   1.560 -                <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
   1.561 -            </j2seproject1:manifest>
   1.562 -        </j2seproject1:jar>
   1.563 -        <echo>To run this application from the command line without Ant, try:</echo>
   1.564 -        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   1.565 -        <property location="${dist.jar}" name="dist.jar.resolved"/>
   1.566 -        <pathconvert property="run.classpath.with.dist.jar">
   1.567 -            <path path="${run.classpath}"/>
   1.568 -            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
   1.569 -        </pathconvert>
   1.570 -        <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
   1.571 -    </target>
   1.572 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries">
   1.573 -        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   1.574 -        <pathconvert property="run.classpath.without.build.classes.dir">
   1.575 -            <path path="${run.classpath}"/>
   1.576 -            <map from="${build.classes.dir.resolved}" to=""/>
   1.577 -        </pathconvert>
   1.578 -        <pathconvert pathsep=" " property="jar.classpath">
   1.579 -            <path path="${run.classpath.without.build.classes.dir}"/>
   1.580 -            <chainedmapper>
   1.581 -                <flattenmapper/>
   1.582 -                <globmapper from="*" to="lib/*"/>
   1.583 -            </chainedmapper>
   1.584 -        </pathconvert>
   1.585 -        <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   1.586 -        <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
   1.587 -            <fileset dir="${build.classes.dir}"/>
   1.588 -            <manifest>
   1.589 -                <attribute name="Main-Class" value="${main.class}"/>
   1.590 -                <attribute name="Class-Path" value="${jar.classpath}"/>
   1.591 -            </manifest>
   1.592 -        </copylibs>
   1.593 -        <echo>To run this application from the command line without Ant, try:</echo>
   1.594 -        <property location="${dist.jar}" name="dist.jar.resolved"/>
   1.595 -        <echo>java -jar "${dist.jar.resolved}"</echo>
   1.596 -    </target>
   1.597 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+mkdist.available" name="-do-jar-with-libraries-without-mainclass" unless="main.class.available">
   1.598 -        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   1.599 -        <pathconvert property="run.classpath.without.build.classes.dir">
   1.600 -            <path path="${run.classpath}"/>
   1.601 -            <map from="${build.classes.dir.resolved}" to=""/>
   1.602 -        </pathconvert>
   1.603 -        <pathconvert pathsep=" " property="jar.classpath">
   1.604 -            <path path="${run.classpath.without.build.classes.dir}"/>
   1.605 -            <chainedmapper>
   1.606 -                <flattenmapper/>
   1.607 -                <globmapper from="*" to="lib/*"/>
   1.608 -            </chainedmapper>
   1.609 -        </pathconvert>
   1.610 -        <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   1.611 -        <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
   1.612 -            <fileset dir="${build.classes.dir}"/>
   1.613 -            <manifest>
   1.614 -                <attribute name="Class-Path" value="${jar.classpath}"/>
   1.615 -            </manifest>
   1.616 -        </copylibs>
   1.617 -    </target>
   1.618 -    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.mkdist" name="-do-jar-with-libraries-without-manifest" unless="manifest.available">
   1.619 -        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   1.620 -        <pathconvert property="run.classpath.without.build.classes.dir">
   1.621 -            <path path="${run.classpath}"/>
   1.622 -            <map from="${build.classes.dir.resolved}" to=""/>
   1.623 -        </pathconvert>
   1.624 -        <pathconvert pathsep=" " property="jar.classpath">
   1.625 -            <path path="${run.classpath.without.build.classes.dir}"/>
   1.626 -            <chainedmapper>
   1.627 -                <flattenmapper/>
   1.628 -                <globmapper from="*" to="lib/*"/>
   1.629 -            </chainedmapper>
   1.630 -        </pathconvert>
   1.631 -        <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   1.632 -        <copylibs compress="${jar.compress}" jarfile="${dist.jar}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
   1.633 -            <fileset dir="${build.classes.dir}"/>
   1.634 -            <manifest>
   1.635 -                <attribute name="Class-Path" value="${jar.classpath}"/>
   1.636 -            </manifest>
   1.637 -        </copylibs>
   1.638 -    </target>
   1.639 -    <target name="-post-jar">
   1.640 -        <!-- Empty placeholder for easier customization. -->
   1.641 -        <!-- You can override this target in the ../build.xml file. -->
   1.642 -    </target>
   1.643 -    <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-do-jar-with-libraries-without-mainclass,-do-jar-with-libraries-without-manifest,-post-jar" description="Build JAR." name="jar"/>
   1.644 -    <!--
   1.645 -                =================
   1.646 -                EXECUTION SECTION
   1.647 -                =================
   1.648 -            -->
   1.649 -    <target depends="init,compile" description="Run a main class." name="run">
   1.650 -        <j2seproject1:java>
   1.651 -            <customize>
   1.652 -                <arg line="${application.args}"/>
   1.653 -            </customize>
   1.654 -        </j2seproject1:java>
   1.655 -    </target>
   1.656 -    <target name="-do-not-recompile">
   1.657 -        <property name="javac.includes.binary" value=""/>
   1.658 -    </target>
   1.659 -    <target depends="init,compile-single" name="run-single">
   1.660 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
   1.661 -        <j2seproject1:java classname="${run.class}"/>
   1.662 -    </target>
   1.663 -    <target depends="init,compile-test-single" name="run-test-with-main">
   1.664 -        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
   1.665 -        <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
   1.666 -    </target>
   1.667 -    <!--
   1.668 -                =================
   1.669 -                DEBUGGING SECTION
   1.670 -                =================
   1.671 -            -->
   1.672 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
   1.673 -        <j2seproject1:nbjpdastart name="${debug.class}"/>
   1.674 -    </target>
   1.675 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
   1.676 -        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
   1.677 -    </target>
   1.678 -    <target depends="init,compile" name="-debug-start-debuggee">
   1.679 -        <j2seproject3:debug>
   1.680 -            <customize>
   1.681 -                <arg line="${application.args}"/>
   1.682 -            </customize>
   1.683 -        </j2seproject3:debug>
   1.684 -    </target>
   1.685 -    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
   1.686 -    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
   1.687 -        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
   1.688 -    </target>
   1.689 -    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
   1.690 -    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
   1.691 -        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
   1.692 -        <j2seproject3:debug classname="${debug.class}"/>
   1.693 -    </target>
   1.694 -    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
   1.695 -    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
   1.696 -        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
   1.697 -        <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
   1.698 -    </target>
   1.699 -    <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.700 -    <target depends="init" name="-pre-debug-fix">
   1.701 -        <fail unless="fix.includes">Must set fix.includes</fail>
   1.702 -        <property name="javac.includes" value="${fix.includes}.java"/>
   1.703 -    </target>
   1.704 -    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
   1.705 -        <j2seproject1:nbjpdareload/>
   1.706 -    </target>
   1.707 -    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
   1.708 -    <!--
   1.709 -                ===============
   1.710 -                JAVADOC SECTION
   1.711 -                ===============
   1.712 -            -->
   1.713 -    <target depends="init" name="-javadoc-build">
   1.714 -        <mkdir dir="${dist.javadoc.dir}"/>
   1.715 -        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
   1.716 -            <classpath>
   1.717 -                <path path="${javac.classpath}"/>
   1.718 -            </classpath>
   1.719 -            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
   1.720 -                <filename name="**/*.java"/>
   1.721 -            </fileset>
   1.722 -            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
   1.723 -                <include name="**/*.java"/>
   1.724 -            </fileset>
   1.725 -        </javadoc>
   1.726 -    </target>
   1.727 -    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
   1.728 -        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
   1.729 -    </target>
   1.730 -    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
   1.731 -    <!--
   1.732 -                =========================
   1.733 -                JUNIT COMPILATION SECTION
   1.734 -                =========================
   1.735 -            -->
   1.736 -    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
   1.737 -        <mkdir dir="${build.test.classes.dir}"/>
   1.738 -    </target>
   1.739 -    <target name="-pre-compile-test">
   1.740 -        <!-- Empty placeholder for easier customization. -->
   1.741 -        <!-- You can override this target in the ../build.xml file. -->
   1.742 -    </target>
   1.743 -    <target if="do.depend.true" name="-compile-test-depend">
   1.744 -        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
   1.745 -    </target>
   1.746 -    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
   1.747 -        <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" processorpath="${javac.test.processorpath}" srcdir="${test.src.dir}"/>
   1.748 -        <copy todir="${build.test.classes.dir}">
   1.749 -            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   1.750 -        </copy>
   1.751 -    </target>
   1.752 -    <target name="-post-compile-test">
   1.753 -        <!-- Empty placeholder for easier customization. -->
   1.754 -        <!-- You can override this target in the ../build.xml file. -->
   1.755 -    </target>
   1.756 -    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
   1.757 -    <target name="-pre-compile-test-single">
   1.758 -        <!-- Empty placeholder for easier customization. -->
   1.759 -        <!-- You can override this target in the ../build.xml file. -->
   1.760 -    </target>
   1.761 -    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
   1.762 -        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   1.763 -        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
   1.764 -        <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/>
   1.765 -        <copy todir="${build.test.classes.dir}">
   1.766 -            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   1.767 -        </copy>
   1.768 -    </target>
   1.769 -    <target name="-post-compile-test-single">
   1.770 -        <!-- Empty placeholder for easier customization. -->
   1.771 -        <!-- You can override this target in the ../build.xml file. -->
   1.772 -    </target>
   1.773 -    <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.774 -    <!--
   1.775 -                =======================
   1.776 -                JUNIT EXECUTION SECTION
   1.777 -                =======================
   1.778 -            -->
   1.779 -    <target depends="init" if="have.tests" name="-pre-test-run">
   1.780 -        <mkdir dir="${build.test.results.dir}"/>
   1.781 -    </target>
   1.782 -    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
   1.783 -        <j2seproject3:junit testincludes="**/*Test.java"/>
   1.784 -    </target>
   1.785 -    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
   1.786 -        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
   1.787 -    </target>
   1.788 -    <target depends="init" if="have.tests" name="test-report"/>
   1.789 -    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
   1.790 -    <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.791 -    <target depends="init" if="have.tests" name="-pre-test-run-single">
   1.792 -        <mkdir dir="${build.test.results.dir}"/>
   1.793 -    </target>
   1.794 -    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
   1.795 -        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
   1.796 -        <j2seproject3:junit excludes="" includes="${test.includes}"/>
   1.797 -    </target>
   1.798 -    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
   1.799 -        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
   1.800 -    </target>
   1.801 -    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
   1.802 -    <!--
   1.803 -                =======================
   1.804 -                JUNIT DEBUGGING SECTION
   1.805 -                =======================
   1.806 -            -->
   1.807 -    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
   1.808 -        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
   1.809 -        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
   1.810 -        <delete file="${test.report.file}"/>
   1.811 -        <mkdir dir="${build.test.results.dir}"/>
   1.812 -        <j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">
   1.813 -            <customize>
   1.814 -                <syspropertyset>
   1.815 -                    <propertyref prefix="test-sys-prop."/>
   1.816 -                    <mapper from="test-sys-prop.*" to="*" type="glob"/>
   1.817 -                </syspropertyset>
   1.818 -                <arg value="${test.class}"/>
   1.819 -                <arg value="showoutput=true"/>
   1.820 -                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
   1.821 -                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
   1.822 -            </customize>
   1.823 -        </j2seproject3:debug>
   1.824 -    </target>
   1.825 -    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
   1.826 -        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
   1.827 -    </target>
   1.828 -    <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
   1.829 -    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
   1.830 -        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
   1.831 -    </target>
   1.832 -    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
   1.833 -    <!--
   1.834 -                =========================
   1.835 -                APPLET EXECUTION SECTION
   1.836 -                =========================
   1.837 -            -->
   1.838 -    <target depends="init,compile-single" name="run-applet">
   1.839 -        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   1.840 -        <j2seproject1:java classname="sun.applet.AppletViewer">
   1.841 -            <customize>
   1.842 -                <arg value="${applet.url}"/>
   1.843 -            </customize>
   1.844 -        </j2seproject1:java>
   1.845 -    </target>
   1.846 -    <!--
   1.847 -                =========================
   1.848 -                APPLET DEBUGGING  SECTION
   1.849 -                =========================
   1.850 -            -->
   1.851 -    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
   1.852 -        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   1.853 -        <j2seproject3:debug classname="sun.applet.AppletViewer">
   1.854 -            <customize>
   1.855 -                <arg value="${applet.url}"/>
   1.856 -            </customize>
   1.857 -        </j2seproject3:debug>
   1.858 -    </target>
   1.859 -    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
   1.860 -    <!--
   1.861 -                ===============
   1.862 -                CLEANUP SECTION
   1.863 -                ===============
   1.864 -            -->
   1.865 -    <target name="-deps-clean-init" unless="built-clean.properties">
   1.866 -        <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
   1.867 -        <delete file="${built-clean.properties}" quiet="true"/>
   1.868 -    </target>
   1.869 -    <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
   1.870 -        <echo level="warn" message="Cycle detected: indexer was already built"/>
   1.871 -    </target>
   1.872 -    <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
   1.873 -        <mkdir dir="${build.dir}"/>
   1.874 -        <touch file="${built-clean.properties}" verbose="false"/>
   1.875 -        <property file="${built-clean.properties}" prefix="already.built.clean."/>
   1.876 -        <antcall target="-warn-already-built-clean"/>
   1.877 -        <propertyfile file="${built-clean.properties}">
   1.878 -            <entry key="${basedir}" value=""/>
   1.879 -        </propertyfile>
   1.880 -        <antcall target="-maybe-call-dep">
   1.881 -            <param name="call.built.properties" value="${built-clean.properties}"/>
   1.882 -            <param location="${project.org_netbeans_modules_jackpot30_api}" name="call.subproject"/>
   1.883 -            <param location="${project.org_netbeans_modules_jackpot30_api}/build.xml" name="call.script"/>
   1.884 -            <param name="call.target" value="clean"/>
   1.885 -            <param name="transfer.built-clean.properties" value="${built-clean.properties}"/>
   1.886 -        </antcall>
   1.887 -    </target>
   1.888 -    <target depends="init" name="-do-clean">
   1.889 -        <delete dir="${build.dir}"/>
   1.890 -        <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
   1.891 -    </target>
   1.892 -    <target name="-post-clean">
   1.893 -        <!-- Empty placeholder for easier customization. -->
   1.894 -        <!-- You can override this target in the ../build.xml file. -->
   1.895 -    </target>
   1.896 -    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
   1.897 -    <target name="-check-call-dep">
   1.898 -        <property file="${call.built.properties}" prefix="already.built."/>
   1.899 -        <condition property="should.call.dep">
   1.900 -            <not>
   1.901 -                <isset property="already.built.${call.subproject}"/>
   1.902 -            </not>
   1.903 -        </condition>
   1.904 -        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
   1.905 -        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:${toString:endorsed.classpath.path}">
   1.906 -            <length length="0" string="${endorsed.classpath}" when="greater"/>
   1.907 -        </condition>
   1.908 -    </target>
   1.909 -    <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
   1.910 -        <ant antfile="${call.script}" inheritall="false" target="${call.target}">
   1.911 -            <propertyset>
   1.912 -                <propertyref prefix="transfer."/>
   1.913 -                <mapper from="transfer.*" to="*" type="glob"/>
   1.914 -            </propertyset>
   1.915 -        </ant>
   1.916 -    </target>
   1.917 -</project>