java/Postak/nbproject/build-impl.xml
author František Kučera <franta-hg@frantovo.cz>
Wed Jan 05 14:19:56 2011 +0100 (2011-01-05)
changeset 8 218a80f12411
parent 5 bea5d9e11d37
child 13 b15d81be8af3
permissions -rw-r--r--
netbeans, drobnosti
franta-hg@0
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@0
     2
<!--
franta-hg@0
     3
*** GENERATED FROM project.xml - DO NOT EDIT  ***
franta-hg@0
     4
***         EDIT ../build.xml INSTEAD         ***
franta-hg@0
     5
franta-hg@0
     6
For the purpose of easier reading the script
franta-hg@0
     7
is divided into following sections:
franta-hg@0
     8
franta-hg@0
     9
  - initialization
franta-hg@0
    10
  - compilation
franta-hg@0
    11
  - jar
franta-hg@0
    12
  - execution
franta-hg@0
    13
  - debugging
franta-hg@0
    14
  - javadoc
franta-hg@0
    15
  - junit compilation
franta-hg@0
    16
  - junit execution
franta-hg@0
    17
  - junit debugging
franta-hg@0
    18
  - applet
franta-hg@0
    19
  - cleanup
franta-hg@0
    20
franta-hg@0
    21
        -->
franta-hg@0
    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="Postak-impl">
franta-hg@5
    23
    <fail message="Please build using Ant 1.7.1 or higher.">
franta-hg@5
    24
        <condition>
franta-hg@5
    25
            <not>
franta-hg@5
    26
                <antversion atleast="1.7.1"/>
franta-hg@5
    27
            </not>
franta-hg@5
    28
        </condition>
franta-hg@5
    29
    </fail>
franta-hg@0
    30
    <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
franta-hg@0
    31
    <!-- 
franta-hg@0
    32
                ======================
franta-hg@0
    33
                INITIALIZATION SECTION 
franta-hg@0
    34
                ======================
franta-hg@0
    35
            -->
franta-hg@0
    36
    <target name="-pre-init">
franta-hg@0
    37
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
    38
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
    39
    </target>
franta-hg@0
    40
    <target depends="-pre-init" name="-init-private">
franta-hg@0
    41
        <property file="nbproject/private/config.properties"/>
franta-hg@0
    42
        <property file="nbproject/private/configs/${config}.properties"/>
franta-hg@0
    43
        <property file="nbproject/private/private.properties"/>
franta-hg@0
    44
    </target>
franta-hg@0
    45
    <target depends="-pre-init,-init-private" name="-init-user">
franta-hg@0
    46
        <property file="${user.properties.file}"/>
franta-hg@0
    47
        <!-- The two properties below are usually overridden -->
franta-hg@0
    48
        <!-- by the active platform. Just a fallback. -->
franta-hg@0
    49
        <property name="default.javac.source" value="1.4"/>
franta-hg@0
    50
        <property name="default.javac.target" value="1.4"/>
franta-hg@0
    51
    </target>
franta-hg@0
    52
    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
franta-hg@0
    53
        <property file="nbproject/configs/${config}.properties"/>
franta-hg@0
    54
        <property file="nbproject/project.properties"/>
franta-hg@0
    55
    </target>
franta-hg@0
    56
    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
franta-hg@0
    57
        <available file="${manifest.file}" property="manifest.available"/>
franta-hg@5
    58
        <available file="${application.splash}" property="splashscreen.available"/>
franta-hg@5
    59
        <condition property="main.class.available">
franta-hg@0
    60
            <and>
franta-hg@0
    61
                <isset property="main.class"/>
franta-hg@0
    62
                <not>
franta-hg@0
    63
                    <equals arg1="${main.class}" arg2="" trim="true"/>
franta-hg@0
    64
                </not>
franta-hg@0
    65
            </and>
franta-hg@0
    66
        </condition>
franta-hg@5
    67
        <condition property="manifest.available+main.class">
franta-hg@5
    68
            <and>
franta-hg@5
    69
                <isset property="manifest.available"/>
franta-hg@5
    70
                <isset property="main.class.available"/>
franta-hg@5
    71
            </and>
franta-hg@5
    72
        </condition>
franta-hg@5
    73
        <condition property="do.mkdist">
franta-hg@5
    74
            <and>
franta-hg@5
    75
                <isset property="libs.CopyLibs.classpath"/>
franta-hg@5
    76
                <not>
franta-hg@5
    77
                    <istrue value="${mkdist.disabled}"/>
franta-hg@5
    78
                </not>
franta-hg@5
    79
            </and>
franta-hg@5
    80
        </condition>
franta-hg@0
    81
        <condition property="manifest.available+main.class+mkdist.available">
franta-hg@0
    82
            <and>
franta-hg@0
    83
                <istrue value="${manifest.available+main.class}"/>
franta-hg@5
    84
                <isset property="do.mkdist"/>
franta-hg@5
    85
            </and>
franta-hg@5
    86
        </condition>
franta-hg@5
    87
        <condition property="manifest.available+main.class+mkdist.available+splashscreen.available">
franta-hg@5
    88
            <and>
franta-hg@5
    89
                <istrue value="${manifest.available+main.class+mkdist.available}"/>
franta-hg@5
    90
                <istrue value="${splashscreen.available}"/>
franta-hg@5
    91
            </and>
franta-hg@5
    92
        </condition>
franta-hg@5
    93
        <condition property="do.archive">
franta-hg@5
    94
            <not>
franta-hg@5
    95
                <istrue value="${jar.archive.disabled}"/>
franta-hg@5
    96
            </not>
franta-hg@5
    97
        </condition>
franta-hg@5
    98
        <condition property="do.archive+manifest.available">
franta-hg@5
    99
            <and>
franta-hg@5
   100
                <isset property="manifest.available"/>
franta-hg@5
   101
                <istrue value="${do.archive}"/>
franta-hg@5
   102
            </and>
franta-hg@5
   103
        </condition>
franta-hg@5
   104
        <condition property="do.archive+manifest.available+main.class">
franta-hg@5
   105
            <and>
franta-hg@5
   106
                <istrue value="${manifest.available+main.class}"/>
franta-hg@5
   107
                <istrue value="${do.archive}"/>
franta-hg@5
   108
            </and>
franta-hg@5
   109
        </condition>
franta-hg@5
   110
        <condition property="do.archive+manifest.available+main.class+mkdist.available">
franta-hg@5
   111
            <and>
franta-hg@5
   112
                <istrue value="${manifest.available+main.class+mkdist.available}"/>
franta-hg@5
   113
                <istrue value="${do.archive}"/>
franta-hg@5
   114
            </and>
franta-hg@5
   115
        </condition>
franta-hg@5
   116
        <condition property="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available">
franta-hg@5
   117
            <and>
franta-hg@5
   118
                <istrue value="${manifest.available+main.class+mkdist.available+splashscreen.available}"/>
franta-hg@5
   119
                <istrue value="${do.archive}"/>
franta-hg@0
   120
            </and>
franta-hg@0
   121
        </condition>
franta-hg@0
   122
        <condition property="have.tests">
franta-hg@0
   123
            <or>
franta-hg@0
   124
                <available file="${test.src.dir}"/>
franta-hg@0
   125
            </or>
franta-hg@0
   126
        </condition>
franta-hg@0
   127
        <condition property="have.sources">
franta-hg@0
   128
            <or>
franta-hg@0
   129
                <available file="${src.dir}"/>
franta-hg@0
   130
            </or>
franta-hg@0
   131
        </condition>
franta-hg@0
   132
        <condition property="netbeans.home+have.tests">
franta-hg@0
   133
            <and>
franta-hg@0
   134
                <isset property="netbeans.home"/>
franta-hg@0
   135
                <isset property="have.tests"/>
franta-hg@0
   136
            </and>
franta-hg@0
   137
        </condition>
franta-hg@0
   138
        <condition property="no.javadoc.preview">
franta-hg@0
   139
            <and>
franta-hg@0
   140
                <isset property="javadoc.preview"/>
franta-hg@0
   141
                <isfalse value="${javadoc.preview}"/>
franta-hg@0
   142
            </and>
franta-hg@0
   143
        </condition>
franta-hg@0
   144
        <property name="run.jvmargs" value=""/>
franta-hg@0
   145
        <property name="javac.compilerargs" value=""/>
franta-hg@0
   146
        <property name="work.dir" value="${basedir}"/>
franta-hg@0
   147
        <condition property="no.deps">
franta-hg@0
   148
            <and>
franta-hg@0
   149
                <istrue value="${no.dependencies}"/>
franta-hg@0
   150
            </and>
franta-hg@0
   151
        </condition>
franta-hg@0
   152
        <property name="javac.debug" value="true"/>
franta-hg@0
   153
        <property name="javadoc.preview" value="true"/>
franta-hg@0
   154
        <property name="application.args" value=""/>
franta-hg@0
   155
        <property name="source.encoding" value="${file.encoding}"/>
franta-hg@5
   156
        <property name="runtime.encoding" value="${source.encoding}"/>
franta-hg@0
   157
        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
franta-hg@0
   158
            <and>
franta-hg@0
   159
                <isset property="javadoc.encoding"/>
franta-hg@0
   160
                <not>
franta-hg@0
   161
                    <equals arg1="${javadoc.encoding}" arg2=""/>
franta-hg@0
   162
                </not>
franta-hg@0
   163
            </and>
franta-hg@0
   164
        </condition>
franta-hg@0
   165
        <property name="javadoc.encoding.used" value="${source.encoding}"/>
franta-hg@0
   166
        <property name="includes" value="**"/>
franta-hg@0
   167
        <property name="excludes" value=""/>
franta-hg@0
   168
        <property name="do.depend" value="false"/>
franta-hg@0
   169
        <condition property="do.depend.true">
franta-hg@0
   170
            <istrue value="${do.depend}"/>
franta-hg@0
   171
        </condition>
franta-hg@5
   172
        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
franta-hg@5
   173
        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
franta-hg@5
   174
            <length length="0" string="${endorsed.classpath}" when="greater"/>
franta-hg@0
   175
        </condition>
franta-hg@5
   176
        <property name="javac.fork" value="false"/>
franta-hg@5
   177
        <property name="jar.index" value="false"/>
franta-hg@5
   178
        <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
franta-hg@0
   179
    </target>
franta-hg@0
   180
    <target name="-post-init">
franta-hg@0
   181
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   182
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   183
    </target>
franta-hg@0
   184
    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
franta-hg@0
   185
        <fail unless="src.dir">Must set src.dir</fail>
franta-hg@0
   186
        <fail unless="test.src.dir">Must set test.src.dir</fail>
franta-hg@0
   187
        <fail unless="build.dir">Must set build.dir</fail>
franta-hg@0
   188
        <fail unless="dist.dir">Must set dist.dir</fail>
franta-hg@0
   189
        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
franta-hg@0
   190
        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
franta-hg@0
   191
        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
franta-hg@0
   192
        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
franta-hg@0
   193
        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
franta-hg@0
   194
        <fail unless="dist.jar">Must set dist.jar</fail>
franta-hg@0
   195
    </target>
franta-hg@0
   196
    <target name="-init-macrodef-property">
franta-hg@0
   197
        <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
franta-hg@0
   198
            <attribute name="name"/>
franta-hg@0
   199
            <attribute name="value"/>
franta-hg@0
   200
            <sequential>
franta-hg@0
   201
                <property name="@{name}" value="${@{value}}"/>
franta-hg@0
   202
            </sequential>
franta-hg@0
   203
        </macrodef>
franta-hg@0
   204
    </target>
franta-hg@5
   205
    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
franta-hg@0
   206
        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@0
   207
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@0
   208
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@0
   209
            <attribute default="${javac.classpath}" name="classpath"/>
franta-hg@5
   210
            <attribute default="${javac.processorpath}" name="processorpath"/>
franta-hg@5
   211
            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
franta-hg@0
   212
            <attribute default="${includes}" name="includes"/>
franta-hg@0
   213
            <attribute default="${excludes}" name="excludes"/>
franta-hg@0
   214
            <attribute default="${javac.debug}" name="debug"/>
franta-hg@5
   215
            <attribute default="${empty.dir}" name="sourcepath"/>
franta-hg@5
   216
            <attribute default="${empty.dir}" name="gensrcdir"/>
franta-hg@0
   217
            <element name="customize" optional="true"/>
franta-hg@0
   218
            <sequential>
franta-hg@5
   219
                <property location="${build.dir}/empty" name="empty.dir"/>
franta-hg@5
   220
                <mkdir dir="${empty.dir}"/>
franta-hg@5
   221
                <mkdir dir="@{apgeneratedsrcdir}"/>
franta-hg@5
   222
                <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@5
   223
                    <src>
franta-hg@5
   224
                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
franta-hg@5
   225
                            <include name="*"/>
franta-hg@5
   226
                        </dirset>
franta-hg@5
   227
                    </src>
franta-hg@0
   228
                    <classpath>
franta-hg@0
   229
                        <path path="@{classpath}"/>
franta-hg@0
   230
                    </classpath>
franta-hg@5
   231
                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@5
   232
                    <compilerarg line="${javac.compilerargs}"/>
franta-hg@5
   233
                    <compilerarg value="-processorpath"/>
franta-hg@5
   234
                    <compilerarg path="@{processorpath}:${empty.dir}"/>
franta-hg@5
   235
                    <compilerarg line="${ap.processors.internal}"/>
franta-hg@5
   236
                    <compilerarg line="${annotation.processing.processor.options}"/>
franta-hg@5
   237
                    <compilerarg value="-s"/>
franta-hg@5
   238
                    <compilerarg path="@{apgeneratedsrcdir}"/>
franta-hg@5
   239
                    <compilerarg line="${ap.proc.none.internal}"/>
franta-hg@0
   240
                    <customize/>
franta-hg@0
   241
                </javac>
franta-hg@0
   242
            </sequential>
franta-hg@0
   243
        </macrodef>
franta-hg@5
   244
    </target>
franta-hg@5
   245
    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
franta-hg@5
   246
        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@5
   247
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@5
   248
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@5
   249
            <attribute default="${javac.classpath}" name="classpath"/>
franta-hg@5
   250
            <attribute default="${javac.processorpath}" name="processorpath"/>
franta-hg@5
   251
            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
franta-hg@5
   252
            <attribute default="${includes}" name="includes"/>
franta-hg@5
   253
            <attribute default="${excludes}" name="excludes"/>
franta-hg@5
   254
            <attribute default="${javac.debug}" name="debug"/>
franta-hg@5
   255
            <attribute default="${empty.dir}" name="sourcepath"/>
franta-hg@5
   256
            <attribute default="${empty.dir}" name="gensrcdir"/>
franta-hg@5
   257
            <element name="customize" optional="true"/>
franta-hg@5
   258
            <sequential>
franta-hg@5
   259
                <property location="${build.dir}/empty" name="empty.dir"/>
franta-hg@5
   260
                <mkdir dir="${empty.dir}"/>
franta-hg@5
   261
                <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@5
   262
                    <src>
franta-hg@5
   263
                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
franta-hg@5
   264
                            <include name="*"/>
franta-hg@5
   265
                        </dirset>
franta-hg@5
   266
                    </src>
franta-hg@5
   267
                    <classpath>
franta-hg@5
   268
                        <path path="@{classpath}"/>
franta-hg@5
   269
                    </classpath>
franta-hg@5
   270
                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@5
   271
                    <compilerarg line="${javac.compilerargs}"/>
franta-hg@5
   272
                    <customize/>
franta-hg@5
   273
                </javac>
franta-hg@5
   274
            </sequential>
franta-hg@5
   275
        </macrodef>
franta-hg@5
   276
    </target>
franta-hg@5
   277
    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
franta-hg@0
   278
        <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@0
   279
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@0
   280
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@0
   281
            <attribute default="${javac.classpath}" name="classpath"/>
franta-hg@0
   282
            <sequential>
franta-hg@0
   283
                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
franta-hg@0
   284
                    <classpath>
franta-hg@0
   285
                        <path path="@{classpath}"/>
franta-hg@0
   286
                    </classpath>
franta-hg@0
   287
                </depend>
franta-hg@0
   288
            </sequential>
franta-hg@0
   289
        </macrodef>
franta-hg@0
   290
        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@0
   291
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@0
   292
            <sequential>
franta-hg@0
   293
                <fail unless="javac.includes">Must set javac.includes</fail>
franta-hg@8
   294
                <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
franta-hg@0
   295
                    <path>
franta-hg@0
   296
                        <filelist dir="@{destdir}" files="${javac.includes}"/>
franta-hg@0
   297
                    </path>
franta-hg@0
   298
                    <globmapper from="*.java" to="*.class"/>
franta-hg@0
   299
                </pathconvert>
franta-hg@8
   300
                <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
franta-hg@8
   301
                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
franta-hg@0
   302
                <delete>
franta-hg@8
   303
                    <files includesfile="${javac.includesfile.binary}"/>
franta-hg@0
   304
                </delete>
franta-hg@8
   305
                <delete file="${javac.includesfile.binary}"/>
franta-hg@0
   306
            </sequential>
franta-hg@0
   307
        </macrodef>
franta-hg@0
   308
    </target>
franta-hg@0
   309
    <target name="-init-macrodef-junit">
franta-hg@0
   310
        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@0
   311
            <attribute default="${includes}" name="includes"/>
franta-hg@0
   312
            <attribute default="${excludes}" name="excludes"/>
franta-hg@0
   313
            <attribute default="**" name="testincludes"/>
franta-hg@0
   314
            <sequential>
franta-hg@5
   315
                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
franta-hg@0
   316
                    <batchtest todir="${build.test.results.dir}">
franta-hg@0
   317
                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
franta-hg@0
   318
                            <filename name="@{testincludes}"/>
franta-hg@0
   319
                        </fileset>
franta-hg@0
   320
                    </batchtest>
franta-hg@0
   321
                    <classpath>
franta-hg@0
   322
                        <path path="${run.test.classpath}"/>
franta-hg@0
   323
                    </classpath>
franta-hg@0
   324
                    <syspropertyset>
franta-hg@0
   325
                        <propertyref prefix="test-sys-prop."/>
franta-hg@0
   326
                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
franta-hg@0
   327
                    </syspropertyset>
franta-hg@0
   328
                    <formatter type="brief" usefile="false"/>
franta-hg@0
   329
                    <formatter type="xml"/>
franta-hg@5
   330
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@0
   331
                    <jvmarg line="${run.jvmargs}"/>
franta-hg@0
   332
                </junit>
franta-hg@0
   333
            </sequential>
franta-hg@0
   334
        </macrodef>
franta-hg@0
   335
    </target>
franta-hg@3
   336
    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
franta-hg@0
   337
        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
franta-hg@0
   338
            <attribute default="${main.class}" name="name"/>
franta-hg@0
   339
            <attribute default="${debug.classpath}" name="classpath"/>
franta-hg@0
   340
            <attribute default="" name="stopclassname"/>
franta-hg@0
   341
            <sequential>
franta-hg@3
   342
                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
franta-hg@0
   343
                    <classpath>
franta-hg@0
   344
                        <path path="@{classpath}"/>
franta-hg@0
   345
                    </classpath>
franta-hg@0
   346
                </nbjpdastart>
franta-hg@0
   347
            </sequential>
franta-hg@0
   348
        </macrodef>
franta-hg@0
   349
        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
franta-hg@0
   350
            <attribute default="${build.classes.dir}" name="dir"/>
franta-hg@0
   351
            <sequential>
franta-hg@0
   352
                <nbjpdareload>
franta-hg@0
   353
                    <fileset dir="@{dir}" includes="${fix.classes}">
franta-hg@0
   354
                        <include name="${fix.includes}*.class"/>
franta-hg@0
   355
                    </fileset>
franta-hg@0
   356
                </nbjpdareload>
franta-hg@0
   357
            </sequential>
franta-hg@0
   358
        </macrodef>
franta-hg@0
   359
    </target>
franta-hg@0
   360
    <target name="-init-debug-args">
franta-hg@0
   361
        <property name="version-output" value="java version &quot;${ant.java.version}"/>
franta-hg@0
   362
        <condition property="have-jdk-older-than-1.4">
franta-hg@0
   363
            <or>
franta-hg@0
   364
                <contains string="${version-output}" substring="java version &quot;1.0"/>
franta-hg@0
   365
                <contains string="${version-output}" substring="java version &quot;1.1"/>
franta-hg@0
   366
                <contains string="${version-output}" substring="java version &quot;1.2"/>
franta-hg@0
   367
                <contains string="${version-output}" substring="java version &quot;1.3"/>
franta-hg@0
   368
            </or>
franta-hg@0
   369
        </condition>
franta-hg@0
   370
        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
franta-hg@0
   371
            <istrue value="${have-jdk-older-than-1.4}"/>
franta-hg@0
   372
        </condition>
franta-hg@3
   373
        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
franta-hg@3
   374
            <os family="windows"/>
franta-hg@3
   375
        </condition>
franta-hg@3
   376
        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
franta-hg@3
   377
            <isset property="debug.transport"/>
franta-hg@3
   378
        </condition>
franta-hg@0
   379
    </target>
franta-hg@0
   380
    <target depends="-init-debug-args" name="-init-macrodef-debug">
franta-hg@0
   381
        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@0
   382
            <attribute default="${main.class}" name="classname"/>
franta-hg@0
   383
            <attribute default="${debug.classpath}" name="classpath"/>
franta-hg@0
   384
            <element name="customize" optional="true"/>
franta-hg@0
   385
            <sequential>
franta-hg@0
   386
                <java classname="@{classname}" dir="${work.dir}" fork="true">
franta-hg@5
   387
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@0
   388
                    <jvmarg line="${debug-args-line}"/>
franta-hg@3
   389
                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
franta-hg@5
   390
                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
franta-hg@5
   391
                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
franta-hg@0
   392
                    <jvmarg line="${run.jvmargs}"/>
franta-hg@0
   393
                    <classpath>
franta-hg@0
   394
                        <path path="@{classpath}"/>
franta-hg@0
   395
                    </classpath>
franta-hg@0
   396
                    <syspropertyset>
franta-hg@0
   397
                        <propertyref prefix="run-sys-prop."/>
franta-hg@0
   398
                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
franta-hg@0
   399
                    </syspropertyset>
franta-hg@0
   400
                    <customize/>
franta-hg@0
   401
                </java>
franta-hg@0
   402
            </sequential>
franta-hg@0
   403
        </macrodef>
franta-hg@0
   404
    </target>
franta-hg@0
   405
    <target name="-init-macrodef-java">
franta-hg@0
   406
        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
franta-hg@0
   407
            <attribute default="${main.class}" name="classname"/>
franta-hg@5
   408
            <attribute default="${run.classpath}" name="classpath"/>
franta-hg@0
   409
            <element name="customize" optional="true"/>
franta-hg@0
   410
            <sequential>
franta-hg@0
   411
                <java classname="@{classname}" dir="${work.dir}" fork="true">
franta-hg@5
   412
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@5
   413
                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
franta-hg@5
   414
                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
franta-hg@0
   415
                    <jvmarg line="${run.jvmargs}"/>
franta-hg@0
   416
                    <classpath>
franta-hg@5
   417
                        <path path="@{classpath}"/>
franta-hg@0
   418
                    </classpath>
franta-hg@0
   419
                    <syspropertyset>
franta-hg@0
   420
                        <propertyref prefix="run-sys-prop."/>
franta-hg@0
   421
                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
franta-hg@0
   422
                    </syspropertyset>
franta-hg@0
   423
                    <customize/>
franta-hg@0
   424
                </java>
franta-hg@0
   425
            </sequential>
franta-hg@0
   426
        </macrodef>
franta-hg@0
   427
    </target>
franta-hg@5
   428
    <target name="-init-macrodef-copylibs">
franta-hg@5
   429
        <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
franta-hg@5
   430
            <element name="customize" optional="true"/>
franta-hg@5
   431
            <sequential>
franta-hg@5
   432
                <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
franta-hg@5
   433
                <pathconvert property="run.classpath.without.build.classes.dir">
franta-hg@5
   434
                    <path path="${run.classpath}"/>
franta-hg@5
   435
                    <map from="${build.classes.dir.resolved}" to=""/>
franta-hg@5
   436
                </pathconvert>
franta-hg@5
   437
                <pathconvert pathsep=" " property="jar.classpath">
franta-hg@5
   438
                    <path path="${run.classpath.without.build.classes.dir}"/>
franta-hg@5
   439
                    <chainedmapper>
franta-hg@5
   440
                        <flattenmapper/>
franta-hg@5
   441
                        <globmapper from="*" to="lib/*"/>
franta-hg@5
   442
                    </chainedmapper>
franta-hg@5
   443
                </pathconvert>
franta-hg@5
   444
                <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
franta-hg@5
   445
                <copylibs compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
franta-hg@5
   446
                    <fileset dir="${build.classes.dir}"/>
franta-hg@5
   447
                    <manifest>
franta-hg@5
   448
                        <attribute name="Class-Path" value="${jar.classpath}"/>
franta-hg@5
   449
                        <customize/>
franta-hg@5
   450
                    </manifest>
franta-hg@5
   451
                </copylibs>
franta-hg@5
   452
            </sequential>
franta-hg@5
   453
        </macrodef>
franta-hg@5
   454
    </target>
franta-hg@0
   455
    <target name="-init-presetdef-jar">
franta-hg@0
   456
        <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
franta-hg@5
   457
            <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
franta-hg@0
   458
                <j2seproject1:fileset dir="${build.classes.dir}"/>
franta-hg@0
   459
            </jar>
franta-hg@0
   460
        </presetdef>
franta-hg@0
   461
    </target>
franta-hg@5
   462
    <target name="-init-ap-cmdline-properties">
franta-hg@5
   463
        <property name="annotation.processing.enabled" value="true"/>
franta-hg@5
   464
        <property name="annotation.processing.processors.list" value=""/>
franta-hg@5
   465
        <property name="annotation.processing.processor.options" value=""/>
franta-hg@5
   466
        <property name="annotation.processing.run.all.processors" value="true"/>
franta-hg@5
   467
        <property name="javac.processorpath" value="${javac.classpath}"/>
franta-hg@5
   468
        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
franta-hg@5
   469
        <condition property="ap.supported.internal" value="true">
franta-hg@5
   470
            <not>
franta-hg@5
   471
                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
franta-hg@5
   472
            </not>
franta-hg@5
   473
        </condition>
franta-hg@5
   474
    </target>
franta-hg@5
   475
    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
franta-hg@5
   476
        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
franta-hg@5
   477
            <isfalse value="${annotation.processing.run.all.processors}"/>
franta-hg@5
   478
        </condition>
franta-hg@5
   479
        <condition else="" property="ap.proc.none.internal" value="-proc:none">
franta-hg@5
   480
            <isfalse value="${annotation.processing.enabled}"/>
franta-hg@5
   481
        </condition>
franta-hg@5
   482
    </target>
franta-hg@5
   483
    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
franta-hg@5
   484
        <property name="ap.cmd.line.internal" value=""/>
franta-hg@5
   485
    </target>
franta-hg@5
   486
    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
franta-hg@0
   487
    <!--
franta-hg@0
   488
                ===================
franta-hg@0
   489
                COMPILATION SECTION
franta-hg@0
   490
                ===================
franta-hg@0
   491
            -->
franta-hg@5
   492
    <target name="-deps-jar-init" unless="built-jar.properties">
franta-hg@5
   493
        <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
franta-hg@5
   494
        <delete file="${built-jar.properties}" quiet="true"/>
franta-hg@5
   495
    </target>
franta-hg@5
   496
    <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
franta-hg@5
   497
        <echo level="warn" message="Cycle detected: Postak was already built"/>
franta-hg@5
   498
    </target>
franta-hg@5
   499
    <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
franta-hg@5
   500
        <mkdir dir="${build.dir}"/>
franta-hg@5
   501
        <touch file="${built-jar.properties}" verbose="false"/>
franta-hg@5
   502
        <property file="${built-jar.properties}" prefix="already.built.jar."/>
franta-hg@5
   503
        <antcall target="-warn-already-built-jar"/>
franta-hg@5
   504
        <propertyfile file="${built-jar.properties}">
franta-hg@5
   505
            <entry key="${basedir}" value=""/>
franta-hg@5
   506
        </propertyfile>
franta-hg@5
   507
    </target>
franta-hg@3
   508
    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
franta-hg@3
   509
    <target depends="init" name="-check-automatic-build">
franta-hg@3
   510
        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
franta-hg@3
   511
    </target>
franta-hg@3
   512
    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
franta-hg@3
   513
        <antcall target="clean"/>
franta-hg@3
   514
    </target>
franta-hg@0
   515
    <target depends="init,deps-jar" name="-pre-pre-compile">
franta-hg@0
   516
        <mkdir dir="${build.classes.dir}"/>
franta-hg@0
   517
    </target>
franta-hg@0
   518
    <target name="-pre-compile">
franta-hg@0
   519
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   520
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   521
    </target>
franta-hg@0
   522
    <target if="do.depend.true" name="-compile-depend">
franta-hg@5
   523
        <pathconvert property="build.generated.subdirs">
franta-hg@5
   524
            <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@5
   525
                <include name="*"/>
franta-hg@5
   526
            </dirset>
franta-hg@5
   527
        </pathconvert>
franta-hg@5
   528
        <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
franta-hg@0
   529
    </target>
franta-hg@5
   530
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
franta-hg@5
   531
        <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
franta-hg@0
   532
        <copy todir="${build.classes.dir}">
franta-hg@0
   533
            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@0
   534
        </copy>
franta-hg@0
   535
    </target>
franta-hg@5
   536
    <target if="has.persistence.xml" name="-copy-persistence-xml">
franta-hg@5
   537
        <mkdir dir="${build.classes.dir}/META-INF"/>
franta-hg@5
   538
        <copy todir="${build.classes.dir}/META-INF">
franta-hg@5
   539
            <fileset dir="${meta.inf.dir}" includes="persistence.xml"/>
franta-hg@5
   540
        </copy>
franta-hg@5
   541
    </target>
franta-hg@0
   542
    <target name="-post-compile">
franta-hg@0
   543
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   544
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   545
    </target>
franta-hg@3
   546
    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
franta-hg@0
   547
    <target name="-pre-compile-single">
franta-hg@0
   548
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   549
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   550
    </target>
franta-hg@0
   551
    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
franta-hg@0
   552
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@0
   553
        <j2seproject3:force-recompile/>
franta-hg@5
   554
        <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
franta-hg@0
   555
    </target>
franta-hg@0
   556
    <target name="-post-compile-single">
franta-hg@0
   557
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   558
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   559
    </target>
franta-hg@3
   560
    <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@0
   561
    <!--
franta-hg@0
   562
                ====================
franta-hg@0
   563
                JAR BUILDING SECTION
franta-hg@0
   564
                ====================
franta-hg@0
   565
            -->
franta-hg@0
   566
    <target depends="init" name="-pre-pre-jar">
franta-hg@0
   567
        <dirname file="${dist.jar}" property="dist.jar.dir"/>
franta-hg@0
   568
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@0
   569
    </target>
franta-hg@0
   570
    <target name="-pre-jar">
franta-hg@0
   571
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   572
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   573
    </target>
franta-hg@5
   574
    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available">
franta-hg@0
   575
        <j2seproject1:jar/>
franta-hg@0
   576
    </target>
franta-hg@5
   577
    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class">
franta-hg@0
   578
        <j2seproject1:jar manifest="${manifest.file}"/>
franta-hg@0
   579
    </target>
franta-hg@5
   580
    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
franta-hg@0
   581
        <j2seproject1:jar manifest="${manifest.file}">
franta-hg@0
   582
            <j2seproject1:manifest>
franta-hg@0
   583
                <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
franta-hg@0
   584
            </j2seproject1:manifest>
franta-hg@0
   585
        </j2seproject1:jar>
franta-hg@0
   586
        <echo>To run this application from the command line without Ant, try:</echo>
franta-hg@0
   587
        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
franta-hg@0
   588
        <property location="${dist.jar}" name="dist.jar.resolved"/>
franta-hg@0
   589
        <pathconvert property="run.classpath.with.dist.jar">
franta-hg@0
   590
            <path path="${run.classpath}"/>
franta-hg@0
   591
            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
franta-hg@0
   592
        </pathconvert>
franta-hg@0
   593
        <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
franta-hg@0
   594
    </target>
franta-hg@5
   595
    <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available" name="-do-jar-with-libraries-and-splashscreen">
franta-hg@5
   596
        <basename file="${application.splash}" property="splashscreen.basename"/>
franta-hg@5
   597
        <mkdir dir="${build.classes.dir}/META-INF"/>
franta-hg@5
   598
        <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
franta-hg@5
   599
        <j2seproject3:copylibs>
franta-hg@5
   600
            <customize>
franta-hg@0
   601
                <attribute name="Main-Class" value="${main.class}"/>
franta-hg@5
   602
                <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
franta-hg@5
   603
            </customize>
franta-hg@5
   604
        </j2seproject3:copylibs>
franta-hg@5
   605
        <echo>To run this application from the command line without Ant, try:</echo>
franta-hg@5
   606
        <property location="${dist.jar}" name="dist.jar.resolved"/>
franta-hg@5
   607
        <echo>java -jar "${dist.jar.resolved}"</echo>
franta-hg@5
   608
    </target>
franta-hg@5
   609
    <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries" unless="splashscreen.available">
franta-hg@5
   610
        <j2seproject3:copylibs>
franta-hg@5
   611
            <customize>
franta-hg@5
   612
                <attribute name="Main-Class" value="${main.class}"/>
franta-hg@5
   613
            </customize>
franta-hg@5
   614
        </j2seproject3:copylibs>
franta-hg@0
   615
        <echo>To run this application from the command line without Ant, try:</echo>
franta-hg@0
   616
        <property location="${dist.jar}" name="dist.jar.resolved"/>
franta-hg@0
   617
        <echo>java -jar "${dist.jar.resolved}"</echo>
franta-hg@0
   618
    </target>
franta-hg@0
   619
    <target name="-post-jar">
franta-hg@0
   620
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   621
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   622
    </target>
franta-hg@5
   623
    <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries-and-splashscreen,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
franta-hg@0
   624
    <!--
franta-hg@0
   625
                =================
franta-hg@0
   626
                EXECUTION SECTION
franta-hg@0
   627
                =================
franta-hg@0
   628
            -->
franta-hg@0
   629
    <target depends="init,compile" description="Run a main class." name="run">
franta-hg@0
   630
        <j2seproject1:java>
franta-hg@0
   631
            <customize>
franta-hg@0
   632
                <arg line="${application.args}"/>
franta-hg@0
   633
            </customize>
franta-hg@0
   634
        </j2seproject1:java>
franta-hg@0
   635
    </target>
franta-hg@0
   636
    <target name="-do-not-recompile">
franta-hg@0
   637
        <property name="javac.includes.binary" value=""/>
franta-hg@0
   638
    </target>
franta-hg@5
   639
    <target depends="init,compile-single" name="run-single">
franta-hg@0
   640
        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
franta-hg@0
   641
        <j2seproject1:java classname="${run.class}"/>
franta-hg@0
   642
    </target>
franta-hg@5
   643
    <target depends="init,compile-test-single" name="run-test-with-main">
franta-hg@5
   644
        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
franta-hg@5
   645
        <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
franta-hg@5
   646
    </target>
franta-hg@0
   647
    <!--
franta-hg@0
   648
                =================
franta-hg@0
   649
                DEBUGGING SECTION
franta-hg@0
   650
                =================
franta-hg@0
   651
            -->
franta-hg@0
   652
    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
franta-hg@0
   653
        <j2seproject1:nbjpdastart name="${debug.class}"/>
franta-hg@0
   654
    </target>
franta-hg@5
   655
    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
franta-hg@5
   656
        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
franta-hg@5
   657
    </target>
franta-hg@0
   658
    <target depends="init,compile" name="-debug-start-debuggee">
franta-hg@0
   659
        <j2seproject3:debug>
franta-hg@0
   660
            <customize>
franta-hg@0
   661
                <arg line="${application.args}"/>
franta-hg@0
   662
            </customize>
franta-hg@0
   663
        </j2seproject3:debug>
franta-hg@0
   664
    </target>
franta-hg@0
   665
    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
franta-hg@0
   666
    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
franta-hg@0
   667
        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
franta-hg@0
   668
    </target>
franta-hg@0
   669
    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
franta-hg@0
   670
    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
franta-hg@0
   671
        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
franta-hg@0
   672
        <j2seproject3:debug classname="${debug.class}"/>
franta-hg@0
   673
    </target>
franta-hg@5
   674
    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
franta-hg@5
   675
    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
franta-hg@5
   676
        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
franta-hg@5
   677
        <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
franta-hg@5
   678
    </target>
franta-hg@5
   679
    <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@0
   680
    <target depends="init" name="-pre-debug-fix">
franta-hg@0
   681
        <fail unless="fix.includes">Must set fix.includes</fail>
franta-hg@0
   682
        <property name="javac.includes" value="${fix.includes}.java"/>
franta-hg@0
   683
    </target>
franta-hg@0
   684
    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
franta-hg@0
   685
        <j2seproject1:nbjpdareload/>
franta-hg@0
   686
    </target>
franta-hg@0
   687
    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
franta-hg@0
   688
    <!--
franta-hg@0
   689
                ===============
franta-hg@0
   690
                JAVADOC SECTION
franta-hg@0
   691
                ===============
franta-hg@0
   692
            -->
franta-hg@5
   693
    <target depends="init" if="have.sources" name="-javadoc-build">
franta-hg@0
   694
        <mkdir dir="${dist.javadoc.dir}"/>
franta-hg@0
   695
        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
franta-hg@0
   696
            <classpath>
franta-hg@0
   697
                <path path="${javac.classpath}"/>
franta-hg@0
   698
            </classpath>
franta-hg@0
   699
            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
franta-hg@0
   700
                <filename name="**/*.java"/>
franta-hg@0
   701
            </fileset>
franta-hg@5
   702
            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@5
   703
                <include name="**/*.java"/>
franta-hg@5
   704
            </fileset>
franta-hg@0
   705
        </javadoc>
franta-hg@5
   706
        <copy todir="${dist.javadoc.dir}">
franta-hg@5
   707
            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
franta-hg@5
   708
                <filename name="**/doc-files/**"/>
franta-hg@5
   709
            </fileset>
franta-hg@5
   710
            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@5
   711
                <include name="**/doc-files/**"/>
franta-hg@5
   712
            </fileset>
franta-hg@5
   713
        </copy>
franta-hg@0
   714
    </target>
franta-hg@0
   715
    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
franta-hg@0
   716
        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
franta-hg@0
   717
    </target>
franta-hg@0
   718
    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
franta-hg@0
   719
    <!--
franta-hg@0
   720
                =========================
franta-hg@0
   721
                JUNIT COMPILATION SECTION
franta-hg@0
   722
                =========================
franta-hg@0
   723
            -->
franta-hg@0
   724
    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
franta-hg@0
   725
        <mkdir dir="${build.test.classes.dir}"/>
franta-hg@0
   726
    </target>
franta-hg@0
   727
    <target name="-pre-compile-test">
franta-hg@0
   728
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   729
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   730
    </target>
franta-hg@0
   731
    <target if="do.depend.true" name="-compile-test-depend">
franta-hg@0
   732
        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
franta-hg@0
   733
    </target>
franta-hg@0
   734
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
franta-hg@5
   735
        <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@0
   736
        <copy todir="${build.test.classes.dir}">
franta-hg@0
   737
            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@0
   738
        </copy>
franta-hg@0
   739
    </target>
franta-hg@0
   740
    <target name="-post-compile-test">
franta-hg@0
   741
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   742
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   743
    </target>
franta-hg@0
   744
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
franta-hg@0
   745
    <target name="-pre-compile-test-single">
franta-hg@0
   746
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   747
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   748
    </target>
franta-hg@0
   749
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
franta-hg@0
   750
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@0
   751
        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
franta-hg@5
   752
        <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@0
   753
        <copy todir="${build.test.classes.dir}">
franta-hg@0
   754
            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@0
   755
        </copy>
franta-hg@0
   756
    </target>
franta-hg@0
   757
    <target name="-post-compile-test-single">
franta-hg@0
   758
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   759
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   760
    </target>
franta-hg@0
   761
    <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@0
   762
    <!--
franta-hg@0
   763
                =======================
franta-hg@0
   764
                JUNIT EXECUTION SECTION
franta-hg@0
   765
                =======================
franta-hg@0
   766
            -->
franta-hg@0
   767
    <target depends="init" if="have.tests" name="-pre-test-run">
franta-hg@0
   768
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@0
   769
    </target>
franta-hg@0
   770
    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
franta-hg@0
   771
        <j2seproject3:junit testincludes="**/*Test.java"/>
franta-hg@0
   772
    </target>
franta-hg@0
   773
    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
franta-hg@5
   774
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@0
   775
    </target>
franta-hg@0
   776
    <target depends="init" if="have.tests" name="test-report"/>
franta-hg@0
   777
    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
franta-hg@0
   778
    <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@0
   779
    <target depends="init" if="have.tests" name="-pre-test-run-single">
franta-hg@0
   780
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@0
   781
    </target>
franta-hg@0
   782
    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
franta-hg@0
   783
        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
franta-hg@0
   784
        <j2seproject3:junit excludes="" includes="${test.includes}"/>
franta-hg@0
   785
    </target>
franta-hg@0
   786
    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
franta-hg@5
   787
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@0
   788
    </target>
franta-hg@5
   789
    <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@0
   790
    <!--
franta-hg@0
   791
                =======================
franta-hg@0
   792
                JUNIT DEBUGGING SECTION
franta-hg@0
   793
                =======================
franta-hg@0
   794
            -->
franta-hg@0
   795
    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
franta-hg@0
   796
        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
franta-hg@0
   797
        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
franta-hg@0
   798
        <delete file="${test.report.file}"/>
franta-hg@0
   799
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@0
   800
        <j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">
franta-hg@0
   801
            <customize>
franta-hg@0
   802
                <syspropertyset>
franta-hg@0
   803
                    <propertyref prefix="test-sys-prop."/>
franta-hg@0
   804
                    <mapper from="test-sys-prop.*" to="*" type="glob"/>
franta-hg@0
   805
                </syspropertyset>
franta-hg@0
   806
                <arg value="${test.class}"/>
franta-hg@0
   807
                <arg value="showoutput=true"/>
franta-hg@0
   808
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
franta-hg@0
   809
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
franta-hg@0
   810
            </customize>
franta-hg@0
   811
        </j2seproject3:debug>
franta-hg@0
   812
    </target>
franta-hg@0
   813
    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
franta-hg@0
   814
        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
franta-hg@0
   815
    </target>
franta-hg@5
   816
    <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
franta-hg@0
   817
    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
franta-hg@0
   818
        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
franta-hg@0
   819
    </target>
franta-hg@0
   820
    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
franta-hg@0
   821
    <!--
franta-hg@0
   822
                =========================
franta-hg@0
   823
                APPLET EXECUTION SECTION
franta-hg@0
   824
                =========================
franta-hg@0
   825
            -->
franta-hg@0
   826
    <target depends="init,compile-single" name="run-applet">
franta-hg@0
   827
        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
franta-hg@0
   828
        <j2seproject1:java classname="sun.applet.AppletViewer">
franta-hg@0
   829
            <customize>
franta-hg@0
   830
                <arg value="${applet.url}"/>
franta-hg@0
   831
            </customize>
franta-hg@0
   832
        </j2seproject1:java>
franta-hg@0
   833
    </target>
franta-hg@0
   834
    <!--
franta-hg@0
   835
                =========================
franta-hg@0
   836
                APPLET DEBUGGING  SECTION
franta-hg@0
   837
                =========================
franta-hg@0
   838
            -->
franta-hg@0
   839
    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
franta-hg@0
   840
        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
franta-hg@0
   841
        <j2seproject3:debug classname="sun.applet.AppletViewer">
franta-hg@0
   842
            <customize>
franta-hg@0
   843
                <arg value="${applet.url}"/>
franta-hg@0
   844
            </customize>
franta-hg@0
   845
        </j2seproject3:debug>
franta-hg@0
   846
    </target>
franta-hg@0
   847
    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
franta-hg@0
   848
    <!--
franta-hg@0
   849
                ===============
franta-hg@0
   850
                CLEANUP SECTION
franta-hg@0
   851
                ===============
franta-hg@0
   852
            -->
franta-hg@5
   853
    <target name="-deps-clean-init" unless="built-clean.properties">
franta-hg@5
   854
        <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
franta-hg@5
   855
        <delete file="${built-clean.properties}" quiet="true"/>
franta-hg@5
   856
    </target>
franta-hg@5
   857
    <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
franta-hg@5
   858
        <echo level="warn" message="Cycle detected: Postak was already built"/>
franta-hg@5
   859
    </target>
franta-hg@5
   860
    <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
franta-hg@5
   861
        <mkdir dir="${build.dir}"/>
franta-hg@5
   862
        <touch file="${built-clean.properties}" verbose="false"/>
franta-hg@5
   863
        <property file="${built-clean.properties}" prefix="already.built.clean."/>
franta-hg@5
   864
        <antcall target="-warn-already-built-clean"/>
franta-hg@5
   865
        <propertyfile file="${built-clean.properties}">
franta-hg@5
   866
            <entry key="${basedir}" value=""/>
franta-hg@5
   867
        </propertyfile>
franta-hg@5
   868
    </target>
franta-hg@0
   869
    <target depends="init" name="-do-clean">
franta-hg@0
   870
        <delete dir="${build.dir}"/>
franta-hg@5
   871
        <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
franta-hg@0
   872
    </target>
franta-hg@0
   873
    <target name="-post-clean">
franta-hg@0
   874
        <!-- Empty placeholder for easier customization. -->
franta-hg@0
   875
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@0
   876
    </target>
franta-hg@0
   877
    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
franta-hg@5
   878
    <target name="-check-call-dep">
franta-hg@5
   879
        <property file="${call.built.properties}" prefix="already.built."/>
franta-hg@5
   880
        <condition property="should.call.dep">
franta-hg@5
   881
            <not>
franta-hg@5
   882
                <isset property="already.built.${call.subproject}"/>
franta-hg@5
   883
            </not>
franta-hg@5
   884
        </condition>
franta-hg@5
   885
    </target>
franta-hg@5
   886
    <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
franta-hg@5
   887
        <ant antfile="${call.script}" inheritall="false" target="${call.target}">
franta-hg@5
   888
            <propertyset>
franta-hg@5
   889
                <propertyref prefix="transfer."/>
franta-hg@5
   890
                <mapper from="transfer.*" to="*" type="glob"/>
franta-hg@5
   891
            </propertyset>
franta-hg@5
   892
        </ant>
franta-hg@5
   893
    </target>
franta-hg@0
   894
</project>