java/alt2xml-in-ini/nbproject/build-impl.xml
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Nov 2020 20:20:39 +0100
changeset 116 94081a55bf41
parent 114 c3a2c32afaae
permissions -rw-r--r--
Added tag v0.2 for changeset 96e1125c8500
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 *** GENERATED FROM project.xml - DO NOT EDIT  ***
     4 ***         EDIT ../build.xml INSTEAD         ***
     5 
     6 For the purpose of easier reading the script
     7 is divided into following sections:
     8 
     9   - initialization
    10   - compilation
    11   - jar
    12   - execution
    13   - debugging
    14   - javadoc
    15   - test compilation
    16   - test execution
    17   - test debugging
    18   - applet
    19   - cleanup
    20 
    21         -->
    22 <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="alt2xml-in-ini-impl">
    23     <fail message="Please build using Ant 1.8.0 or higher.">
    24         <condition>
    25             <not>
    26                 <antversion atleast="1.8.0"/>
    27             </not>
    28         </condition>
    29     </fail>
    30     <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
    31     <!-- 
    32                 ======================
    33                 INITIALIZATION SECTION 
    34                 ======================
    35             -->
    36     <target name="-pre-init">
    37         <!-- Empty placeholder for easier customization. -->
    38         <!-- You can override this target in the ../build.xml file. -->
    39     </target>
    40     <target depends="-pre-init" name="-init-private">
    41         <property file="nbproject/private/config.properties"/>
    42         <property file="nbproject/private/configs/${config}.properties"/>
    43         <property file="nbproject/private/private.properties"/>
    44     </target>
    45     <target depends="-pre-init,-init-private" name="-init-user">
    46         <property file="${user.properties.file}"/>
    47         <!-- The two properties below are usually overridden -->
    48         <!-- by the active platform. Just a fallback. -->
    49         <property name="default.javac.source" value="1.6"/>
    50         <property name="default.javac.target" value="1.6"/>
    51     </target>
    52     <target depends="-pre-init,-init-private,-init-user" name="-init-project">
    53         <property file="nbproject/configs/${config}.properties"/>
    54         <property file="nbproject/project.properties"/>
    55     </target>
    56     <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
    57         <property name="platform.java" value="${java.home}/bin/java"/>
    58         <available file="${manifest.file}" property="manifest.available"/>
    59         <condition property="splashscreen.available">
    60             <and>
    61                 <not>
    62                     <equals arg1="${application.splash}" arg2="" trim="true"/>
    63                 </not>
    64                 <available file="${application.splash}"/>
    65             </and>
    66         </condition>
    67         <condition property="main.class.available">
    68             <and>
    69                 <isset property="main.class"/>
    70                 <not>
    71                     <equals arg1="${main.class}" arg2="" trim="true"/>
    72                 </not>
    73             </and>
    74         </condition>
    75         <condition property="profile.available">
    76             <and>
    77                 <isset property="javac.profile"/>
    78                 <length length="0" string="${javac.profile}" when="greater"/>
    79                 <matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/>
    80             </and>
    81         </condition>
    82         <condition property="do.archive">
    83             <or>
    84                 <not>
    85                     <istrue value="${jar.archive.disabled}"/>
    86                 </not>
    87                 <istrue value="${not.archive.disabled}"/>
    88             </or>
    89         </condition>
    90         <condition property="do.mkdist">
    91             <and>
    92                 <isset property="do.archive"/>
    93                 <isset property="libs.CopyLibs.classpath"/>
    94                 <not>
    95                     <istrue value="${mkdist.disabled}"/>
    96                 </not>
    97             </and>
    98         </condition>
    99         <condition property="do.archive+manifest.available">
   100             <and>
   101                 <isset property="manifest.available"/>
   102                 <istrue value="${do.archive}"/>
   103             </and>
   104         </condition>
   105         <condition property="do.archive+main.class.available">
   106             <and>
   107                 <isset property="main.class.available"/>
   108                 <istrue value="${do.archive}"/>
   109             </and>
   110         </condition>
   111         <condition property="do.archive+splashscreen.available">
   112             <and>
   113                 <isset property="splashscreen.available"/>
   114                 <istrue value="${do.archive}"/>
   115             </and>
   116         </condition>
   117         <condition property="do.archive+profile.available">
   118             <and>
   119                 <isset property="profile.available"/>
   120                 <istrue value="${do.archive}"/>
   121             </and>
   122         </condition>
   123         <condition property="have.tests">
   124             <or>
   125                 <available file="${test.src.dir}"/>
   126             </or>
   127         </condition>
   128         <condition property="have.sources">
   129             <or>
   130                 <available file="${src.dir}"/>
   131                 <available file="${src.config.dir}"/>
   132             </or>
   133         </condition>
   134         <condition property="netbeans.home+have.tests">
   135             <and>
   136                 <isset property="netbeans.home"/>
   137                 <isset property="have.tests"/>
   138             </and>
   139         </condition>
   140         <condition property="no.javadoc.preview">
   141             <and>
   142                 <isset property="javadoc.preview"/>
   143                 <isfalse value="${javadoc.preview}"/>
   144             </and>
   145         </condition>
   146         <property name="run.jvmargs" value=""/>
   147         <property name="run.jvmargs.ide" value=""/>
   148         <property name="javac.compilerargs" value=""/>
   149         <property name="work.dir" value="${basedir}"/>
   150         <condition property="no.deps">
   151             <and>
   152                 <istrue value="${no.dependencies}"/>
   153             </and>
   154         </condition>
   155         <property name="javac.debug" value="true"/>
   156         <property name="javadoc.preview" value="true"/>
   157         <property name="application.args" value=""/>
   158         <property name="source.encoding" value="${file.encoding}"/>
   159         <property name="runtime.encoding" value="${source.encoding}"/>
   160         <property name="manifest.encoding" value="${source.encoding}"/>
   161         <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
   162             <and>
   163                 <isset property="javadoc.encoding"/>
   164                 <not>
   165                     <equals arg1="${javadoc.encoding}" arg2=""/>
   166                 </not>
   167             </and>
   168         </condition>
   169         <property name="javadoc.encoding.used" value="${source.encoding}"/>
   170         <property name="includes" value="**"/>
   171         <property name="excludes" value=""/>
   172         <property name="do.depend" value="false"/>
   173         <condition property="do.depend.true">
   174             <istrue value="${do.depend}"/>
   175         </condition>
   176         <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
   177         <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
   178             <and>
   179                 <isset property="endorsed.classpath"/>
   180                 <not>
   181                     <equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
   182                 </not>
   183             </and>
   184         </condition>
   185         <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
   186             <isset property="profile.available"/>
   187         </condition>
   188         <condition else="false" property="jdkBug6558476">
   189             <and>
   190                 <matches pattern="1\.[56]" string="${java.specification.version}"/>
   191                 <not>
   192                     <os family="unix"/>
   193                 </not>
   194             </and>
   195         </condition>
   196         <condition else="false" property="javac.fork">
   197             <or>
   198                 <istrue value="${jdkBug6558476}"/>
   199                 <istrue value="${javac.external.vm}"/>
   200             </or>
   201         </condition>
   202         <property name="jar.index" value="false"/>
   203         <property name="jar.index.metainf" value="${jar.index}"/>
   204         <property name="copylibs.rebase" value="true"/>
   205         <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
   206         <condition property="junit.available">
   207             <or>
   208                 <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
   209                 <available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
   210             </or>
   211         </condition>
   212         <condition property="testng.available">
   213             <available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
   214         </condition>
   215         <condition property="junit+testng.available">
   216             <and>
   217                 <istrue value="${junit.available}"/>
   218                 <istrue value="${testng.available}"/>
   219             </and>
   220         </condition>
   221         <condition else="testng" property="testng.mode" value="mixed">
   222             <istrue value="${junit+testng.available}"/>
   223         </condition>
   224         <condition else="" property="testng.debug.mode" value="-mixed">
   225             <istrue value="${junit+testng.available}"/>
   226         </condition>
   227         <property name="java.failonerror" value="true"/>
   228     </target>
   229     <target name="-post-init">
   230         <!-- Empty placeholder for easier customization. -->
   231         <!-- You can override this target in the ../build.xml file. -->
   232     </target>
   233     <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
   234         <fail unless="src.dir">Must set src.dir</fail>
   235         <fail unless="src.config.dir">Must set src.config.dir</fail>
   236         <fail unless="test.src.dir">Must set test.src.dir</fail>
   237         <fail unless="build.dir">Must set build.dir</fail>
   238         <fail unless="dist.dir">Must set dist.dir</fail>
   239         <fail unless="build.classes.dir">Must set build.classes.dir</fail>
   240         <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
   241         <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
   242         <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
   243         <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
   244         <fail unless="dist.jar">Must set dist.jar</fail>
   245     </target>
   246     <target name="-init-macrodef-property">
   247         <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
   248             <attribute name="name"/>
   249             <attribute name="value"/>
   250             <sequential>
   251                 <property name="@{name}" value="${@{value}}"/>
   252             </sequential>
   253         </macrodef>
   254     </target>
   255     <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
   256         <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   257             <attribute default="${src.dir}:${src.config.dir}" name="srcdir"/>
   258             <attribute default="${build.classes.dir}" name="destdir"/>
   259             <attribute default="${javac.classpath}" name="classpath"/>
   260             <attribute default="${javac.processorpath}" name="processorpath"/>
   261             <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   262             <attribute default="${includes}" name="includes"/>
   263             <attribute default="${excludes}" name="excludes"/>
   264             <attribute default="${javac.debug}" name="debug"/>
   265             <attribute default="${empty.dir}" name="sourcepath"/>
   266             <attribute default="${empty.dir}" name="gensrcdir"/>
   267             <element name="customize" optional="true"/>
   268             <sequential>
   269                 <property location="${build.dir}/empty" name="empty.dir"/>
   270                 <mkdir dir="${empty.dir}"/>
   271                 <mkdir dir="@{apgeneratedsrcdir}"/>
   272                 <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}">
   273                     <src>
   274                         <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   275                             <include name="*"/>
   276                         </dirset>
   277                     </src>
   278                     <classpath>
   279                         <path path="@{classpath}"/>
   280                     </classpath>
   281                     <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   282                     <compilerarg line="${javac.profile.cmd.line.arg}"/>
   283                     <compilerarg line="${javac.compilerargs}"/>
   284                     <compilerarg value="-processorpath"/>
   285                     <compilerarg path="@{processorpath}:${empty.dir}"/>
   286                     <compilerarg line="${ap.processors.internal}"/>
   287                     <compilerarg line="${annotation.processing.processor.options}"/>
   288                     <compilerarg value="-s"/>
   289                     <compilerarg path="@{apgeneratedsrcdir}"/>
   290                     <compilerarg line="${ap.proc.none.internal}"/>
   291                     <customize/>
   292                 </javac>
   293             </sequential>
   294         </macrodef>
   295     </target>
   296     <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
   297         <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   298             <attribute default="${src.dir}:${src.config.dir}" name="srcdir"/>
   299             <attribute default="${build.classes.dir}" name="destdir"/>
   300             <attribute default="${javac.classpath}" name="classpath"/>
   301             <attribute default="${javac.processorpath}" name="processorpath"/>
   302             <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
   303             <attribute default="${includes}" name="includes"/>
   304             <attribute default="${excludes}" name="excludes"/>
   305             <attribute default="${javac.debug}" name="debug"/>
   306             <attribute default="${empty.dir}" name="sourcepath"/>
   307             <attribute default="${empty.dir}" name="gensrcdir"/>
   308             <element name="customize" optional="true"/>
   309             <sequential>
   310                 <property location="${build.dir}/empty" name="empty.dir"/>
   311                 <mkdir dir="${empty.dir}"/>
   312                 <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}">
   313                     <src>
   314                         <dirset dir="@{gensrcdir}" erroronmissingdir="false">
   315                             <include name="*"/>
   316                         </dirset>
   317                     </src>
   318                     <classpath>
   319                         <path path="@{classpath}"/>
   320                     </classpath>
   321                     <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
   322                     <compilerarg line="${javac.profile.cmd.line.arg}"/>
   323                     <compilerarg line="${javac.compilerargs}"/>
   324                     <customize/>
   325                 </javac>
   326             </sequential>
   327         </macrodef>
   328     </target>
   329     <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
   330         <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
   331             <attribute default="${src.dir}:${src.config.dir}" name="srcdir"/>
   332             <attribute default="${build.classes.dir}" name="destdir"/>
   333             <attribute default="${javac.classpath}" name="classpath"/>
   334             <sequential>
   335                 <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
   336                     <classpath>
   337                         <path path="@{classpath}"/>
   338                     </classpath>
   339                 </depend>
   340             </sequential>
   341         </macrodef>
   342         <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
   343             <attribute default="${build.classes.dir}" name="destdir"/>
   344             <sequential>
   345                 <fail unless="javac.includes">Must set javac.includes</fail>
   346                 <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
   347                     <path>
   348                         <filelist dir="@{destdir}" files="${javac.includes}"/>
   349                     </path>
   350                     <globmapper from="*.java" to="*.class"/>
   351                 </pathconvert>
   352                 <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
   353                 <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
   354                 <delete>
   355                     <files includesfile="${javac.includesfile.binary}"/>
   356                 </delete>
   357                 <delete>
   358                     <fileset file="${javac.includesfile.binary}"/>
   359                 </delete>
   360             </sequential>
   361         </macrodef>
   362     </target>
   363     <target if="${junit.available}" name="-init-macrodef-junit-init">
   364         <condition else="false" property="nb.junit.batch" value="true">
   365             <and>
   366                 <istrue value="${junit.available}"/>
   367                 <not>
   368                     <isset property="test.method"/>
   369                 </not>
   370             </and>
   371         </condition>
   372         <condition else="false" property="nb.junit.single" value="true">
   373             <and>
   374                 <istrue value="${junit.available}"/>
   375                 <isset property="test.method"/>
   376             </and>
   377         </condition>
   378     </target>
   379     <target name="-init-test-properties">
   380         <property name="test.binaryincludes" value="&lt;nothing&gt;"/>
   381         <property name="test.binarytestincludes" value=""/>
   382         <property name="test.binaryexcludes" value=""/>
   383     </target>
   384     <target if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
   385         <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   386             <attribute default="${includes}" name="includes"/>
   387             <attribute default="${excludes}" name="excludes"/>
   388             <attribute default="**" name="testincludes"/>
   389             <attribute default="" name="testmethods"/>
   390             <element name="customize" optional="true"/>
   391             <sequential>
   392                 <property name="junit.forkmode" value="perTest"/>
   393                 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   394                     <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
   395                     <syspropertyset>
   396                         <propertyref prefix="test-sys-prop."/>
   397                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   398                     </syspropertyset>
   399                     <formatter type="brief" usefile="false"/>
   400                     <formatter type="xml"/>
   401                     <jvmarg value="-ea"/>
   402                     <customize/>
   403                 </junit>
   404             </sequential>
   405         </macrodef>
   406     </target>
   407     <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
   408         <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   409             <attribute default="${includes}" name="includes"/>
   410             <attribute default="${excludes}" name="excludes"/>
   411             <attribute default="**" name="testincludes"/>
   412             <attribute default="" name="testmethods"/>
   413             <element name="customize" optional="true"/>
   414             <sequential>
   415                 <property name="junit.forkmode" value="perTest"/>
   416                 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   417                     <batchtest todir="${build.test.results.dir}">
   418                         <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   419                             <filename name="@{testincludes}"/>
   420                         </fileset>
   421                         <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
   422                             <filename name="${test.binarytestincludes}"/>
   423                         </fileset>
   424                     </batchtest>
   425                     <syspropertyset>
   426                         <propertyref prefix="test-sys-prop."/>
   427                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   428                     </syspropertyset>
   429                     <formatter type="brief" usefile="false"/>
   430                     <formatter type="xml"/>
   431                     <jvmarg value="-ea"/>
   432                     <customize/>
   433                 </junit>
   434             </sequential>
   435         </macrodef>
   436     </target>
   437     <target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
   438     <target if="${testng.available}" name="-init-macrodef-testng">
   439         <macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
   440             <attribute default="${includes}" name="includes"/>
   441             <attribute default="${excludes}" name="excludes"/>
   442             <attribute default="**" name="testincludes"/>
   443             <attribute default="" name="testmethods"/>
   444             <element name="customize" optional="true"/>
   445             <sequential>
   446                 <condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
   447                     <isset property="test.method"/>
   448                 </condition>
   449                 <union id="test.set">
   450                     <fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
   451                         <filename name="@{testincludes}"/>
   452                     </fileset>
   453                 </union>
   454                 <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
   455                 <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="alt2xml-in-ini" testname="TestNG tests" workingDir="${work.dir}">
   456                     <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
   457                     <propertyset>
   458                         <propertyref prefix="test-sys-prop."/>
   459                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   460                     </propertyset>
   461                     <customize/>
   462                 </testng>
   463             </sequential>
   464         </macrodef>
   465     </target>
   466     <target name="-init-macrodef-test-impl">
   467         <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   468             <attribute default="${includes}" name="includes"/>
   469             <attribute default="${excludes}" name="excludes"/>
   470             <attribute default="**" name="testincludes"/>
   471             <attribute default="" name="testmethods"/>
   472             <element implicit="true" name="customize" optional="true"/>
   473             <sequential>
   474                 <echo>No tests executed.</echo>
   475             </sequential>
   476         </macrodef>
   477     </target>
   478     <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
   479         <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   480             <attribute default="${includes}" name="includes"/>
   481             <attribute default="${excludes}" name="excludes"/>
   482             <attribute default="**" name="testincludes"/>
   483             <attribute default="" name="testmethods"/>
   484             <element implicit="true" name="customize" optional="true"/>
   485             <sequential>
   486                 <j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   487                     <customize/>
   488                 </j2seproject3:junit>
   489             </sequential>
   490         </macrodef>
   491     </target>
   492     <target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
   493         <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   494             <attribute default="${includes}" name="includes"/>
   495             <attribute default="${excludes}" name="excludes"/>
   496             <attribute default="**" name="testincludes"/>
   497             <attribute default="" name="testmethods"/>
   498             <element implicit="true" name="customize" optional="true"/>
   499             <sequential>
   500                 <j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   501                     <customize/>
   502                 </j2seproject3:testng>
   503             </sequential>
   504         </macrodef>
   505     </target>
   506     <target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
   507         <macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
   508             <attribute default="${includes}" name="includes"/>
   509             <attribute default="${excludes}" name="excludes"/>
   510             <attribute default="**" name="testincludes"/>
   511             <attribute default="" name="testmethods"/>
   512             <sequential>
   513                 <j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   514                     <customize>
   515                         <classpath>
   516                             <path path="${run.test.classpath}"/>
   517                         </classpath>
   518                         <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   519                         <jvmarg line="${run.jvmargs}"/>
   520                         <jvmarg line="${run.jvmargs.ide}"/>
   521                     </customize>
   522                 </j2seproject3:test-impl>
   523             </sequential>
   524         </macrodef>
   525     </target>
   526     <target if="${junit.available}" name="-init-macrodef-junit-debug" unless="${nb.junit.batch}">
   527         <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   528             <attribute default="${includes}" name="includes"/>
   529             <attribute default="${excludes}" name="excludes"/>
   530             <attribute default="**" name="testincludes"/>
   531             <attribute default="" name="testmethods"/>
   532             <element name="customize" optional="true"/>
   533             <sequential>
   534                 <property name="junit.forkmode" value="perTest"/>
   535                 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   536                     <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
   537                     <syspropertyset>
   538                         <propertyref prefix="test-sys-prop."/>
   539                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   540                     </syspropertyset>
   541                     <formatter type="brief" usefile="false"/>
   542                     <formatter type="xml"/>
   543                     <jvmarg value="-ea"/>
   544                     <jvmarg line="${debug-args-line}"/>
   545                     <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
   546                     <customize/>
   547                 </junit>
   548             </sequential>
   549         </macrodef>
   550     </target>
   551     <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-debug-batch">
   552         <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   553             <attribute default="${includes}" name="includes"/>
   554             <attribute default="${excludes}" name="excludes"/>
   555             <attribute default="**" name="testincludes"/>
   556             <attribute default="" name="testmethods"/>
   557             <element name="customize" optional="true"/>
   558             <sequential>
   559                 <property name="junit.forkmode" value="perTest"/>
   560                 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
   561                     <batchtest todir="${build.test.results.dir}">
   562                         <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   563                             <filename name="@{testincludes}"/>
   564                         </fileset>
   565                         <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
   566                             <filename name="${test.binarytestincludes}"/>
   567                         </fileset>
   568                     </batchtest>
   569                     <syspropertyset>
   570                         <propertyref prefix="test-sys-prop."/>
   571                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   572                     </syspropertyset>
   573                     <formatter type="brief" usefile="false"/>
   574                     <formatter type="xml"/>
   575                     <jvmarg value="-ea"/>
   576                     <jvmarg line="${debug-args-line}"/>
   577                     <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
   578                     <customize/>
   579                 </junit>
   580             </sequential>
   581         </macrodef>
   582     </target>
   583     <target depends="-init-macrodef-junit-debug,-init-macrodef-junit-debug-batch" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
   584         <macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   585             <attribute default="${includes}" name="includes"/>
   586             <attribute default="${excludes}" name="excludes"/>
   587             <attribute default="**" name="testincludes"/>
   588             <attribute default="" name="testmethods"/>
   589             <element implicit="true" name="customize" optional="true"/>
   590             <sequential>
   591                 <j2seproject3:junit-debug excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   592                     <customize/>
   593                 </j2seproject3:junit-debug>
   594             </sequential>
   595         </macrodef>
   596     </target>
   597     <target if="${testng.available}" name="-init-macrodef-testng-debug">
   598         <macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   599             <attribute default="${main.class}" name="testClass"/>
   600             <attribute default="" name="testMethod"/>
   601             <element name="customize2" optional="true"/>
   602             <sequential>
   603                 <condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
   604                     <isset property="test.method"/>
   605                 </condition>
   606                 <condition else="-suitename alt2xml-in-ini -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
   607                     <matches pattern=".*\.xml" string="@{testClass}"/>
   608                 </condition>
   609                 <delete dir="${build.test.results.dir}" quiet="true"/>
   610                 <mkdir dir="${build.test.results.dir}"/>
   611                 <j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
   612                     <customize>
   613                         <customize2/>
   614                         <jvmarg value="-ea"/>
   615                         <arg line="${testng.debug.mode}"/>
   616                         <arg line="-d ${build.test.results.dir}"/>
   617                         <arg line="-listener org.testng.reporters.VerboseReporter"/>
   618                         <arg line="${testng.cmd.args}"/>
   619                     </customize>
   620                 </j2seproject3:debug>
   621             </sequential>
   622         </macrodef>
   623     </target>
   624     <target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
   625         <macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
   626             <attribute default="${main.class}" name="testClass"/>
   627             <attribute default="" name="testMethod"/>
   628             <element implicit="true" name="customize2" optional="true"/>
   629             <sequential>
   630                 <j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
   631                     <customize2/>
   632                 </j2seproject3:testng-debug>
   633             </sequential>
   634         </macrodef>
   635     </target>
   636     <target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
   637         <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   638             <attribute default="${includes}" name="includes"/>
   639             <attribute default="${excludes}" name="excludes"/>
   640             <attribute default="**" name="testincludes"/>
   641             <attribute default="" name="testmethods"/>
   642             <attribute default="${main.class}" name="testClass"/>
   643             <attribute default="" name="testMethod"/>
   644             <sequential>
   645                 <j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
   646                     <customize>
   647                         <classpath>
   648                             <path path="${run.test.classpath}"/>
   649                         </classpath>
   650                         <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   651                         <jvmarg line="${run.jvmargs}"/>
   652                         <jvmarg line="${run.jvmargs.ide}"/>
   653                     </customize>
   654                 </j2seproject3:test-debug-impl>
   655             </sequential>
   656         </macrodef>
   657     </target>
   658     <target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
   659         <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   660             <attribute default="${includes}" name="includes"/>
   661             <attribute default="${excludes}" name="excludes"/>
   662             <attribute default="**" name="testincludes"/>
   663             <attribute default="" name="testmethods"/>
   664             <attribute default="${main.class}" name="testClass"/>
   665             <attribute default="" name="testMethod"/>
   666             <sequential>
   667                 <j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
   668                     <customize2>
   669                         <syspropertyset>
   670                             <propertyref prefix="test-sys-prop."/>
   671                             <mapper from="test-sys-prop.*" to="*" type="glob"/>
   672                         </syspropertyset>
   673                     </customize2>
   674                 </j2seproject3:testng-debug-impl>
   675             </sequential>
   676         </macrodef>
   677     </target>
   678     <target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
   679     <!--
   680                 pre NB7.2 profiling section; consider it deprecated
   681             -->
   682     <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
   683     <target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
   684         <!-- Empty placeholder for easier customization. -->
   685         <!-- You can override this target in the ../build.xml file. -->
   686     </target>
   687     <target if="profiler.info.jvmargs.agent" name="-profile-post-init">
   688         <!-- Empty placeholder for easier customization. -->
   689         <!-- You can override this target in the ../build.xml file. -->
   690     </target>
   691     <target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
   692         <macrodef name="resolve">
   693             <attribute name="name"/>
   694             <attribute name="value"/>
   695             <sequential>
   696                 <property name="@{name}" value="${env.@{value}}"/>
   697             </sequential>
   698         </macrodef>
   699         <macrodef name="profile">
   700             <attribute default="${main.class}" name="classname"/>
   701             <element name="customize" optional="true"/>
   702             <sequential>
   703                 <property environment="env"/>
   704                 <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
   705                 <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
   706                     <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   707                     <jvmarg value="${profiler.info.jvmargs.agent}"/>
   708                     <jvmarg line="${profiler.info.jvmargs}"/>
   709                     <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
   710                     <arg line="${application.args}"/>
   711                     <classpath>
   712                         <path path="${run.classpath}"/>
   713                     </classpath>
   714                     <syspropertyset>
   715                         <propertyref prefix="run-sys-prop."/>
   716                         <mapper from="run-sys-prop.*" to="*" type="glob"/>
   717                     </syspropertyset>
   718                     <customize/>
   719                 </java>
   720             </sequential>
   721         </macrodef>
   722     </target>
   723     <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
   724         <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
   725         <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
   726     </target>
   727     <!--
   728                 end of pre NB7.2 profiling section
   729             -->
   730     <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
   731         <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
   732             <attribute default="${main.class}" name="name"/>
   733             <attribute default="${debug.classpath}" name="classpath"/>
   734             <attribute default="" name="stopclassname"/>
   735             <sequential>
   736                 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
   737                     <classpath>
   738                         <path path="@{classpath}"/>
   739                     </classpath>
   740                 </nbjpdastart>
   741             </sequential>
   742         </macrodef>
   743         <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
   744             <attribute default="${build.classes.dir}" name="dir"/>
   745             <sequential>
   746                 <nbjpdareload>
   747                     <fileset dir="@{dir}" includes="${fix.classes}">
   748                         <include name="${fix.includes}*.class"/>
   749                     </fileset>
   750                 </nbjpdareload>
   751             </sequential>
   752         </macrodef>
   753     </target>
   754     <target name="-init-debug-args">
   755         <property name="version-output" value="java version &quot;${ant.java.version}"/>
   756         <condition property="have-jdk-older-than-1.4">
   757             <or>
   758                 <contains string="${version-output}" substring="java version &quot;1.0"/>
   759                 <contains string="${version-output}" substring="java version &quot;1.1"/>
   760                 <contains string="${version-output}" substring="java version &quot;1.2"/>
   761                 <contains string="${version-output}" substring="java version &quot;1.3"/>
   762             </or>
   763         </condition>
   764         <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
   765             <istrue value="${have-jdk-older-than-1.4}"/>
   766         </condition>
   767         <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
   768             <os family="windows"/>
   769         </condition>
   770         <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
   771             <isset property="debug.transport"/>
   772         </condition>
   773     </target>
   774     <target depends="-init-debug-args" name="-init-macrodef-debug">
   775         <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   776             <attribute default="${main.class}" name="classname"/>
   777             <attribute default="${debug.classpath}" name="classpath"/>
   778             <element name="customize" optional="true"/>
   779             <sequential>
   780                 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
   781                     <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   782                     <jvmarg line="${debug-args-line}"/>
   783                     <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
   784                     <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   785                     <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   786                     <jvmarg line="${run.jvmargs}"/>
   787                     <jvmarg line="${run.jvmargs.ide}"/>
   788                     <classpath>
   789                         <path path="@{classpath}"/>
   790                     </classpath>
   791                     <syspropertyset>
   792                         <propertyref prefix="run-sys-prop."/>
   793                         <mapper from="run-sys-prop.*" to="*" type="glob"/>
   794                     </syspropertyset>
   795                     <customize/>
   796                 </java>
   797             </sequential>
   798         </macrodef>
   799     </target>
   800     <target name="-init-macrodef-java">
   801         <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   802             <attribute default="${main.class}" name="classname"/>
   803             <attribute default="${run.classpath}" name="classpath"/>
   804             <attribute default="jvm" name="jvm"/>
   805             <element name="customize" optional="true"/>
   806             <sequential>
   807                 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
   808                     <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
   809                     <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
   810                     <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
   811                     <jvmarg line="${run.jvmargs}"/>
   812                     <jvmarg line="${run.jvmargs.ide}"/>
   813                     <classpath>
   814                         <path path="@{classpath}"/>
   815                     </classpath>
   816                     <syspropertyset>
   817                         <propertyref prefix="run-sys-prop."/>
   818                         <mapper from="run-sys-prop.*" to="*" type="glob"/>
   819                     </syspropertyset>
   820                     <customize/>
   821                 </java>
   822             </sequential>
   823         </macrodef>
   824     </target>
   825     <target name="-init-macrodef-copylibs">
   826         <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
   827             <attribute default="${manifest.file}" name="manifest"/>
   828             <element name="customize" optional="true"/>
   829             <sequential>
   830                 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   831                 <pathconvert property="run.classpath.without.build.classes.dir">
   832                     <path path="${run.classpath}"/>
   833                     <map from="${build.classes.dir.resolved}" to=""/>
   834                 </pathconvert>
   835                 <pathconvert pathsep=" " property="jar.classpath">
   836                     <path path="${run.classpath.without.build.classes.dir}"/>
   837                     <chainedmapper>
   838                         <flattenmapper/>
   839                         <filtermapper>
   840                             <replacestring from=" " to="%20"/>
   841                         </filtermapper>
   842                         <globmapper from="*" to="lib/*"/>
   843                     </chainedmapper>
   844                 </pathconvert>
   845                 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   846                 <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}">
   847                     <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
   848                     <manifest>
   849                         <attribute name="Class-Path" value="${jar.classpath}"/>
   850                         <customize/>
   851                     </manifest>
   852                 </copylibs>
   853             </sequential>
   854         </macrodef>
   855     </target>
   856     <target name="-init-presetdef-jar">
   857         <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
   858             <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8">
   859                 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
   860             </jar>
   861         </presetdef>
   862     </target>
   863     <target name="-init-ap-cmdline-properties">
   864         <property name="annotation.processing.enabled" value="true"/>
   865         <property name="annotation.processing.processors.list" value=""/>
   866         <property name="annotation.processing.processor.options" value=""/>
   867         <property name="annotation.processing.run.all.processors" value="true"/>
   868         <property name="javac.processorpath" value="${javac.classpath}"/>
   869         <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
   870         <condition property="ap.supported.internal" value="true">
   871             <not>
   872                 <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
   873             </not>
   874         </condition>
   875     </target>
   876     <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
   877         <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
   878             <isfalse value="${annotation.processing.run.all.processors}"/>
   879         </condition>
   880         <condition else="" property="ap.proc.none.internal" value="-proc:none">
   881             <isfalse value="${annotation.processing.enabled}"/>
   882         </condition>
   883     </target>
   884     <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
   885         <property name="ap.cmd.line.internal" value=""/>
   886     </target>
   887     <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"/>
   888     <!--
   889                 ===================
   890                 COMPILATION SECTION
   891                 ===================
   892             -->
   893     <target name="-deps-jar-init" unless="built-jar.properties">
   894         <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
   895         <delete file="${built-jar.properties}" quiet="true"/>
   896     </target>
   897     <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
   898         <echo level="warn" message="Cycle detected: alt2xml-in-ini was already built"/>
   899     </target>
   900     <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
   901         <mkdir dir="${build.dir}"/>
   902         <touch file="${built-jar.properties}" verbose="false"/>
   903         <property file="${built-jar.properties}" prefix="already.built.jar."/>
   904         <antcall target="-warn-already-built-jar"/>
   905         <propertyfile file="${built-jar.properties}">
   906             <entry key="${basedir}" value=""/>
   907         </propertyfile>
   908         <antcall target="-maybe-call-dep">
   909             <param name="call.built.properties" value="${built-jar.properties}"/>
   910             <param location="${project.alt2xml-lib-input}" name="call.subproject"/>
   911             <param location="${project.alt2xml-lib-input}/build.xml" name="call.script"/>
   912             <param name="call.target" value="jar"/>
   913             <param name="transfer.built-jar.properties" value="${built-jar.properties}"/>
   914             <param name="transfer.not.archive.disabled" value="true"/>
   915         </antcall>
   916     </target>
   917     <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
   918     <target depends="init" name="-check-automatic-build">
   919         <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
   920     </target>
   921     <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
   922         <antcall target="clean"/>
   923     </target>
   924     <target depends="init,deps-jar" name="-pre-pre-compile">
   925         <mkdir dir="${build.classes.dir}"/>
   926     </target>
   927     <target name="-pre-compile">
   928         <!-- Empty placeholder for easier customization. -->
   929         <!-- You can override this target in the ../build.xml file. -->
   930     </target>
   931     <target if="do.depend.true" name="-compile-depend">
   932         <pathconvert property="build.generated.subdirs">
   933             <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
   934                 <include name="*"/>
   935             </dirset>
   936         </pathconvert>
   937         <j2seproject3:depend srcdir="${src.dir}:${src.config.dir}:${build.generated.subdirs}"/>
   938     </target>
   939     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
   940         <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
   941         <copy todir="${build.classes.dir}">
   942             <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   943             <fileset dir="${src.config.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   944         </copy>
   945     </target>
   946     <target if="has.persistence.xml" name="-copy-persistence-xml">
   947         <mkdir dir="${build.classes.dir}/META-INF"/>
   948         <copy todir="${build.classes.dir}/META-INF">
   949             <fileset dir="${meta.inf.dir}" includes="persistence.xml orm.xml"/>
   950         </copy>
   951     </target>
   952     <target name="-post-compile">
   953         <!-- Empty placeholder for easier customization. -->
   954         <!-- You can override this target in the ../build.xml file. -->
   955     </target>
   956     <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
   957     <target name="-pre-compile-single">
   958         <!-- Empty placeholder for easier customization. -->
   959         <!-- You can override this target in the ../build.xml file. -->
   960     </target>
   961     <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
   962         <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   963         <j2seproject3:force-recompile/>
   964         <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}:${src.config.dir}"/>
   965     </target>
   966     <target name="-post-compile-single">
   967         <!-- Empty placeholder for easier customization. -->
   968         <!-- You can override this target in the ../build.xml file. -->
   969     </target>
   970     <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
   971     <!--
   972                 ====================
   973                 JAR BUILDING SECTION
   974                 ====================
   975             -->
   976     <target depends="init" name="-pre-pre-jar">
   977         <dirname file="${dist.jar}" property="dist.jar.dir"/>
   978         <mkdir dir="${dist.jar.dir}"/>
   979     </target>
   980     <target name="-pre-jar">
   981         <!-- Empty placeholder for easier customization. -->
   982         <!-- You can override this target in the ../build.xml file. -->
   983     </target>
   984     <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available">
   985         <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
   986         <touch file="${tmp.manifest.file}" verbose="false"/>
   987     </target>
   988     <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
   989         <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
   990         <copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/>
   991     </target>
   992     <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
   993         <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
   994             <attribute name="Main-Class" value="${main.class}"/>
   995         </manifest>
   996     </target>
   997     <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
   998         <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
   999             <attribute name="Profile" value="${javac.profile}"/>
  1000         </manifest>
  1001     </target>
  1002     <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
  1003         <basename file="${application.splash}" property="splashscreen.basename"/>
  1004         <mkdir dir="${build.classes.dir}/META-INF"/>
  1005         <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
  1006         <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
  1007             <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
  1008         </manifest>
  1009     </target>
  1010     <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" if="do.mkdist" name="-do-jar-copylibs">
  1011         <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
  1012         <echo level="info">To run this application from the command line without Ant, try:</echo>
  1013         <property location="${dist.jar}" name="dist.jar.resolved"/>
  1014         <echo level="info">java -jar "${dist.jar.resolved}"</echo>
  1015     </target>
  1016     <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" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
  1017         <j2seproject1:jar manifest="${tmp.manifest.file}"/>
  1018         <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
  1019         <property location="${dist.jar}" name="dist.jar.resolved"/>
  1020         <pathconvert property="run.classpath.with.dist.jar">
  1021             <path path="${run.classpath}"/>
  1022             <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
  1023         </pathconvert>
  1024         <condition else="" property="jar.usage.message" value="To run this application from the command line without Ant, try:${line.separator}${platform.java} -cp ${run.classpath.with.dist.jar} ${main.class}">
  1025             <isset property="main.class.available"/>
  1026         </condition>
  1027         <condition else="debug" property="jar.usage.level" value="info">
  1028             <isset property="main.class.available"/>
  1029         </condition>
  1030         <echo level="${jar.usage.level}" message="${jar.usage.message}"/>
  1031     </target>
  1032     <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
  1033         <delete>
  1034             <fileset file="${tmp.manifest.file}"/>
  1035         </delete>
  1036     </target>
  1037     <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"/>
  1038     <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"/>
  1039     <target name="-post-jar">
  1040         <!-- Empty placeholder for easier customization. -->
  1041         <!-- You can override this target in the ../build.xml file. -->
  1042     </target>
  1043     <target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
  1044     <target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/>
  1045     <!--
  1046                 =================
  1047                 EXECUTION SECTION
  1048                 =================
  1049             -->
  1050     <target depends="init,compile" description="Run a main class." name="run">
  1051         <j2seproject1:java>
  1052             <customize>
  1053                 <arg line="${application.args}"/>
  1054             </customize>
  1055         </j2seproject1:java>
  1056     </target>
  1057     <target name="-do-not-recompile">
  1058         <property name="javac.includes.binary" value=""/>
  1059     </target>
  1060     <target depends="init,compile-single" name="run-single">
  1061         <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1062         <j2seproject1:java classname="${run.class}"/>
  1063     </target>
  1064     <target depends="init,compile-test-single" name="run-test-with-main">
  1065         <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1066         <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
  1067     </target>
  1068     <!--
  1069                 =================
  1070                 DEBUGGING SECTION
  1071                 =================
  1072             -->
  1073     <target depends="init" if="netbeans.home" name="-debug-start-debugger">
  1074         <j2seproject1:nbjpdastart name="${debug.class}"/>
  1075     </target>
  1076     <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
  1077         <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
  1078     </target>
  1079     <target depends="init,compile" name="-debug-start-debuggee">
  1080         <j2seproject3:debug>
  1081             <customize>
  1082                 <arg line="${application.args}"/>
  1083             </customize>
  1084         </j2seproject3:debug>
  1085     </target>
  1086     <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
  1087     <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
  1088         <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
  1089     </target>
  1090     <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
  1091     <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
  1092         <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
  1093         <j2seproject3:debug classname="${debug.class}"/>
  1094     </target>
  1095     <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
  1096     <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
  1097         <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
  1098         <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
  1099     </target>
  1100     <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
  1101     <target depends="init" name="-pre-debug-fix">
  1102         <fail unless="fix.includes">Must set fix.includes</fail>
  1103         <property name="javac.includes" value="${fix.includes}.java"/>
  1104     </target>
  1105     <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
  1106         <j2seproject1:nbjpdareload/>
  1107     </target>
  1108     <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
  1109     <!--
  1110                 =================
  1111                 PROFILING SECTION
  1112                 =================
  1113             -->
  1114     <!--
  1115                 pre NB7.2 profiler integration
  1116             -->
  1117     <target depends="profile-init,compile" description="Profile a project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
  1118         <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1119         <nbprofiledirect>
  1120             <classpath>
  1121                 <path path="${run.classpath}"/>
  1122             </classpath>
  1123         </nbprofiledirect>
  1124         <profile/>
  1125     </target>
  1126     <target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="profiler.info.jvmargs.agent" name="-profile-single-pre72">
  1127         <fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
  1128         <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1129         <nbprofiledirect>
  1130             <classpath>
  1131                 <path path="${run.classpath}"/>
  1132             </classpath>
  1133         </nbprofiledirect>
  1134         <profile classname="${profile.class}"/>
  1135     </target>
  1136     <target depends="profile-init,compile-single" if="profiler.info.jvmargs.agent" name="-profile-applet-pre72">
  1137         <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1138         <nbprofiledirect>
  1139             <classpath>
  1140                 <path path="${run.classpath}"/>
  1141             </classpath>
  1142         </nbprofiledirect>
  1143         <profile classname="sun.applet.AppletViewer">
  1144             <customize>
  1145                 <arg value="${applet.url}"/>
  1146             </customize>
  1147         </profile>
  1148     </target>
  1149     <target depends="profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
  1150         <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
  1151         <nbprofiledirect>
  1152             <classpath>
  1153                 <path path="${run.test.classpath}"/>
  1154             </classpath>
  1155         </nbprofiledirect>
  1156         <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
  1157             <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
  1158             <jvmarg value="${profiler.info.jvmargs.agent}"/>
  1159             <jvmarg line="${profiler.info.jvmargs}"/>
  1160             <test name="${profile.class}"/>
  1161             <classpath>
  1162                 <path path="${run.test.classpath}"/>
  1163             </classpath>
  1164             <syspropertyset>
  1165                 <propertyref prefix="test-sys-prop."/>
  1166                 <mapper from="test-sys-prop.*" to="*" type="glob"/>
  1167             </syspropertyset>
  1168             <formatter type="brief" usefile="false"/>
  1169             <formatter type="xml"/>
  1170         </junit>
  1171     </target>
  1172     <!--
  1173                 end of pre NB72 profiling section
  1174             -->
  1175     <target if="netbeans.home" name="-profile-check">
  1176         <condition property="profiler.configured">
  1177             <or>
  1178                 <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
  1179                 <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
  1180             </or>
  1181         </condition>
  1182     </target>
  1183     <target depends="-profile-check,-profile-pre72" description="Profile a project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
  1184         <startprofiler/>
  1185         <antcall target="run"/>
  1186     </target>
  1187     <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">
  1188         <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1189         <startprofiler/>
  1190         <antcall target="run-single"/>
  1191     </target>
  1192     <target depends="-profile-test-single-pre72" description="Profile a selected test in the IDE." name="profile-test-single"/>
  1193     <target depends="-profile-check" description="Profile a selected test in the IDE." if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs">
  1194         <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
  1195         <startprofiler/>
  1196         <antcall target="test-single"/>
  1197     </target>
  1198     <target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
  1199         <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
  1200         <startprofiler/>
  1201         <antcall target="run-test-with-main"/>
  1202     </target>
  1203     <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
  1204         <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1205         <startprofiler/>
  1206         <antcall target="run-applet"/>
  1207     </target>
  1208     <!--
  1209                 ===============
  1210                 JAVADOC SECTION
  1211                 ===============
  1212             -->
  1213     <target depends="init" if="have.sources" name="-javadoc-build">
  1214         <mkdir dir="${dist.javadoc.dir}"/>
  1215         <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
  1216             <and>
  1217                 <isset property="endorsed.classpath.cmd.line.arg"/>
  1218                 <not>
  1219                     <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
  1220                 </not>
  1221             </and>
  1222         </condition>
  1223         <condition else="" property="bug5101868workaround" value="*.java">
  1224             <matches pattern="1\.[56](\..*)?" string="${java.version}"/>
  1225         </condition>
  1226         <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}">
  1227             <classpath>
  1228                 <path path="${javac.classpath}"/>
  1229             </classpath>
  1230             <fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
  1231                 <filename name="**/*.java"/>
  1232             </fileset>
  1233             <fileset dir="${src.config.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
  1234                 <filename name="**/*.java"/>
  1235             </fileset>
  1236             <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
  1237                 <include name="**/*.java"/>
  1238                 <exclude name="*.java"/>
  1239             </fileset>
  1240             <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
  1241         </javadoc>
  1242         <copy todir="${dist.javadoc.dir}">
  1243             <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
  1244                 <filename name="**/doc-files/**"/>
  1245             </fileset>
  1246             <fileset dir="${src.config.dir}" excludes="${excludes}" includes="${includes}">
  1247                 <filename name="**/doc-files/**"/>
  1248             </fileset>
  1249             <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
  1250                 <include name="**/doc-files/**"/>
  1251             </fileset>
  1252         </copy>
  1253     </target>
  1254     <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
  1255         <nbbrowse file="${dist.javadoc.dir}/index.html"/>
  1256     </target>
  1257     <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
  1258     <!--
  1259                 =========================
  1260                 TEST COMPILATION SECTION
  1261                 =========================
  1262             -->
  1263     <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
  1264         <mkdir dir="${build.test.classes.dir}"/>
  1265     </target>
  1266     <target name="-pre-compile-test">
  1267         <!-- Empty placeholder for easier customization. -->
  1268         <!-- You can override this target in the ../build.xml file. -->
  1269     </target>
  1270     <target if="do.depend.true" name="-compile-test-depend">
  1271         <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
  1272     </target>
  1273     <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
  1274         <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}"/>
  1275         <copy todir="${build.test.classes.dir}">
  1276             <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
  1277         </copy>
  1278     </target>
  1279     <target name="-post-compile-test">
  1280         <!-- Empty placeholder for easier customization. -->
  1281         <!-- You can override this target in the ../build.xml file. -->
  1282     </target>
  1283     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
  1284     <target name="-pre-compile-test-single">
  1285         <!-- Empty placeholder for easier customization. -->
  1286         <!-- You can override this target in the ../build.xml file. -->
  1287     </target>
  1288     <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
  1289         <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
  1290         <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
  1291         <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}"/>
  1292         <copy todir="${build.test.classes.dir}">
  1293             <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
  1294         </copy>
  1295     </target>
  1296     <target name="-post-compile-test-single">
  1297         <!-- Empty placeholder for easier customization. -->
  1298         <!-- You can override this target in the ../build.xml file. -->
  1299     </target>
  1300     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
  1301     <!--
  1302                 =======================
  1303                 TEST EXECUTION SECTION
  1304                 =======================
  1305             -->
  1306     <target depends="init" if="have.tests" name="-pre-test-run">
  1307         <mkdir dir="${build.test.results.dir}"/>
  1308     </target>
  1309     <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
  1310         <j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
  1311     </target>
  1312     <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
  1313         <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1314     </target>
  1315     <target depends="init" if="have.tests" name="test-report"/>
  1316     <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
  1317     <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
  1318     <target depends="init" if="have.tests" name="-pre-test-run-single">
  1319         <mkdir dir="${build.test.results.dir}"/>
  1320     </target>
  1321     <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
  1322         <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
  1323         <j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
  1324     </target>
  1325     <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
  1326         <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1327     </target>
  1328     <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"/>
  1329     <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
  1330         <fail unless="test.class">Must select some files in the IDE or set test.class</fail>
  1331         <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
  1332         <j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
  1333     </target>
  1334     <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
  1335         <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
  1336     </target>
  1337     <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
  1338     <!--
  1339                 =======================
  1340                 TEST DEBUGGING SECTION
  1341                 =======================
  1342             -->
  1343     <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
  1344         <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
  1345         <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
  1346     </target>
  1347     <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
  1348         <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
  1349         <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
  1350         <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
  1351     </target>
  1352     <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
  1353         <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
  1354     </target>
  1355     <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
  1356     <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
  1357     <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
  1358         <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
  1359     </target>
  1360     <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
  1361     <!--
  1362                 =========================
  1363                 APPLET EXECUTION SECTION
  1364                 =========================
  1365             -->
  1366     <target depends="init,compile-single" name="run-applet">
  1367         <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1368         <j2seproject1:java classname="sun.applet.AppletViewer">
  1369             <customize>
  1370                 <arg value="${applet.url}"/>
  1371             </customize>
  1372         </j2seproject1:java>
  1373     </target>
  1374     <!--
  1375                 =========================
  1376                 APPLET DEBUGGING  SECTION
  1377                 =========================
  1378             -->
  1379     <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
  1380         <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
  1381         <j2seproject3:debug classname="sun.applet.AppletViewer">
  1382             <customize>
  1383                 <arg value="${applet.url}"/>
  1384             </customize>
  1385         </j2seproject3:debug>
  1386     </target>
  1387     <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
  1388     <!--
  1389                 ===============
  1390                 CLEANUP SECTION
  1391                 ===============
  1392             -->
  1393     <target name="-deps-clean-init" unless="built-clean.properties">
  1394         <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
  1395         <delete file="${built-clean.properties}" quiet="true"/>
  1396     </target>
  1397     <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
  1398         <echo level="warn" message="Cycle detected: alt2xml-in-ini was already built"/>
  1399     </target>
  1400     <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
  1401         <mkdir dir="${build.dir}"/>
  1402         <touch file="${built-clean.properties}" verbose="false"/>
  1403         <property file="${built-clean.properties}" prefix="already.built.clean."/>
  1404         <antcall target="-warn-already-built-clean"/>
  1405         <propertyfile file="${built-clean.properties}">
  1406             <entry key="${basedir}" value=""/>
  1407         </propertyfile>
  1408         <antcall target="-maybe-call-dep">
  1409             <param name="call.built.properties" value="${built-clean.properties}"/>
  1410             <param location="${project.alt2xml-lib-input}" name="call.subproject"/>
  1411             <param location="${project.alt2xml-lib-input}/build.xml" name="call.script"/>
  1412             <param name="call.target" value="clean"/>
  1413             <param name="transfer.built-clean.properties" value="${built-clean.properties}"/>
  1414             <param name="transfer.not.archive.disabled" value="true"/>
  1415         </antcall>
  1416     </target>
  1417     <target depends="init" name="-do-clean">
  1418         <delete dir="${build.dir}"/>
  1419         <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
  1420     </target>
  1421     <target name="-post-clean">
  1422         <!-- Empty placeholder for easier customization. -->
  1423         <!-- You can override this target in the ../build.xml file. -->
  1424     </target>
  1425     <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
  1426     <target name="-check-call-dep">
  1427         <property file="${call.built.properties}" prefix="already.built."/>
  1428         <condition property="should.call.dep">
  1429             <and>
  1430                 <not>
  1431                     <isset property="already.built.${call.subproject}"/>
  1432                 </not>
  1433                 <available file="${call.script}"/>
  1434             </and>
  1435         </condition>
  1436     </target>
  1437     <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
  1438         <ant antfile="${call.script}" inheritall="false" target="${call.target}">
  1439             <propertyset>
  1440                 <propertyref prefix="transfer."/>
  1441                 <mapper from="transfer.*" to="*" type="glob"/>
  1442             </propertyset>
  1443         </ant>
  1444     </target>
  1445 </project>