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