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