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