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