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