java/nekurak.net-ws/nbproject/build-impl.xml
author František Kučera <franta-hg@frantovo.cz>
Sun Aug 15 22:20:10 2010 +0200 (2010-08-15)
changeset 151 d7b5099bf65e
parent 142 44ef544460ca
child 163 5f0d5e1305b3
permissions -rw-r--r--
chat
franta-hg@98
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@98
     2
<!--
franta-hg@98
     3
        *** GENERATED FROM project.xml - DO NOT EDIT  ***
franta-hg@98
     4
        ***         EDIT ../build.xml INSTEAD         ***
franta-hg@98
     5
franta-hg@98
     6
        For the purpose of easier reading the script
franta-hg@98
     7
        is divided into following sections:
franta-hg@98
     8
        - initialization
franta-hg@98
     9
        - compilation
franta-hg@98
    10
        - dist
franta-hg@98
    11
        - execution
franta-hg@98
    12
        - debugging
franta-hg@98
    13
        - javadoc
franta-hg@98
    14
        - junit compilation
franta-hg@98
    15
        - junit execution
franta-hg@98
    16
        - junit debugging
franta-hg@98
    17
        - cleanup
franta-hg@98
    18
franta-hg@98
    19
        -->
franta-hg@98
    20
<project xmlns:webproject1="http://www.netbeans.org/ns/web-project/1" xmlns:webproject2="http://www.netbeans.org/ns/web-project/2" xmlns:webproject3="http://www.netbeans.org/ns/web-project/3" basedir=".." default="default" name="nekurak.net-ws-impl">
franta-hg@98
    21
    <import file="jaxws-build.xml"/>
franta-hg@98
    22
    <import file="ant-deploy.xml"/>
franta-hg@98
    23
    <fail message="Please build using Ant 1.7.1 or higher.">
franta-hg@98
    24
        <condition>
franta-hg@98
    25
            <not>
franta-hg@98
    26
                <antversion atleast="1.7.1"/>
franta-hg@98
    27
            </not>
franta-hg@98
    28
        </condition>
franta-hg@98
    29
    </fail>
franta-hg@98
    30
    <target depends="dist,javadoc" description="Build whole project." name="default"/>
franta-hg@98
    31
    <!--
franta-hg@98
    32
                INITIALIZATION SECTION
franta-hg@98
    33
            -->
franta-hg@98
    34
    <target name="-pre-init">
franta-hg@98
    35
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
    36
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
    37
    </target>
franta-hg@98
    38
    <target depends="-pre-init" name="-init-private">
franta-hg@98
    39
        <property file="nbproject/private/private.properties"/>
franta-hg@98
    40
    </target>
franta-hg@98
    41
    <target depends="-pre-init,-init-private" name="-init-user">
franta-hg@98
    42
        <property file="${user.properties.file}"/>
franta-hg@98
    43
        <!-- The two properties below are usually overridden -->
franta-hg@98
    44
        <!-- by the active platform. Just a fallback. -->
franta-hg@98
    45
        <property name="default.javac.source" value="1.4"/>
franta-hg@98
    46
        <property name="default.javac.target" value="1.4"/>
franta-hg@98
    47
    </target>
franta-hg@98
    48
    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
franta-hg@98
    49
        <property file="nbproject/project.properties"/>
franta-hg@98
    50
    </target>
franta-hg@98
    51
    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" if="dist.ear.dir" name="-do-ear-init"/>
franta-hg@98
    52
    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
franta-hg@98
    53
        <condition property="have.tests">
franta-hg@98
    54
            <or>
franta-hg@98
    55
                <available file="${test.src.dir}"/>
franta-hg@98
    56
            </or>
franta-hg@98
    57
        </condition>
franta-hg@98
    58
        <condition property="have.sources">
franta-hg@98
    59
            <or>
franta-hg@98
    60
                <available file="${src.dir}"/>
franta-hg@98
    61
            </or>
franta-hg@98
    62
        </condition>
franta-hg@98
    63
        <condition property="netbeans.home+have.tests">
franta-hg@98
    64
            <and>
franta-hg@98
    65
                <isset property="netbeans.home"/>
franta-hg@98
    66
                <isset property="have.tests"/>
franta-hg@98
    67
            </and>
franta-hg@98
    68
        </condition>
franta-hg@98
    69
        <condition property="no.javadoc.preview">
franta-hg@98
    70
            <isfalse value="${javadoc.preview}"/>
franta-hg@98
    71
        </condition>
franta-hg@98
    72
        <property name="javac.compilerargs" value=""/>
franta-hg@98
    73
        <condition property="no.deps">
franta-hg@98
    74
            <and>
franta-hg@98
    75
                <istrue value="${no.dependencies}"/>
franta-hg@98
    76
            </and>
franta-hg@98
    77
        </condition>
franta-hg@98
    78
        <condition property="no.dist.ear.dir">
franta-hg@98
    79
            <not>
franta-hg@98
    80
                <isset property="dist.ear.dir"/>
franta-hg@98
    81
            </not>
franta-hg@98
    82
        </condition>
franta-hg@98
    83
        <property name="build.web.excludes" value="${build.classes.excludes}"/>
franta-hg@98
    84
        <condition property="do.compile.jsps">
franta-hg@98
    85
            <istrue value="${compile.jsps}"/>
franta-hg@98
    86
        </condition>
franta-hg@98
    87
        <condition property="do.debug.server">
franta-hg@98
    88
            <or>
franta-hg@98
    89
                <not>
franta-hg@98
    90
                    <isset property="debug.server"/>
franta-hg@98
    91
                </not>
franta-hg@98
    92
                <istrue value="${debug.server}"/>
franta-hg@98
    93
                <and>
franta-hg@98
    94
                    <not>
franta-hg@98
    95
                        <istrue value="${debug.server}"/>
franta-hg@98
    96
                    </not>
franta-hg@98
    97
                    <not>
franta-hg@98
    98
                        <istrue value="${debug.client}"/>
franta-hg@98
    99
                    </not>
franta-hg@98
   100
                </and>
franta-hg@98
   101
            </or>
franta-hg@98
   102
        </condition>
franta-hg@98
   103
        <condition property="do.debug.client">
franta-hg@98
   104
            <istrue value="${debug.client}"/>
franta-hg@98
   105
        </condition>
franta-hg@98
   106
        <condition property="do.display.browser">
franta-hg@98
   107
            <istrue value="${display.browser}"/>
franta-hg@98
   108
        </condition>
franta-hg@98
   109
        <condition property="do.display.browser.debug">
franta-hg@98
   110
            <and>
franta-hg@98
   111
                <isset property="do.display.browser"/>
franta-hg@98
   112
                <not>
franta-hg@98
   113
                    <isset property="do.debug.client"/>
franta-hg@98
   114
                </not>
franta-hg@98
   115
            </and>
franta-hg@98
   116
        </condition>
franta-hg@98
   117
        <available file="${conf.dir}/MANIFEST.MF" property="has.custom.manifest"/>
franta-hg@98
   118
        <available file="${persistence.xml.dir}/persistence.xml" property="has.persistence.xml"/>
franta-hg@98
   119
        <condition property="do.war.package.with.custom.manifest">
franta-hg@98
   120
            <isset property="has.custom.manifest"/>
franta-hg@98
   121
        </condition>
franta-hg@98
   122
        <condition property="do.war.package.without.custom.manifest">
franta-hg@98
   123
            <not>
franta-hg@98
   124
                <isset property="has.custom.manifest"/>
franta-hg@98
   125
            </not>
franta-hg@98
   126
        </condition>
franta-hg@98
   127
        <condition property="do.tmp.war.package.with.custom.manifest">
franta-hg@98
   128
            <and>
franta-hg@98
   129
                <isset property="has.custom.manifest"/>
franta-hg@98
   130
                <or>
franta-hg@98
   131
                    <isfalse value="${directory.deployment.supported}"/>
franta-hg@98
   132
                    <isset property="dist.ear.dir"/>
franta-hg@98
   133
                </or>
franta-hg@98
   134
            </and>
franta-hg@98
   135
        </condition>
franta-hg@98
   136
        <condition property="do.tmp.war.package.without.custom.manifest">
franta-hg@98
   137
            <and>
franta-hg@98
   138
                <not>
franta-hg@98
   139
                    <isset property="has.custom.manifest"/>
franta-hg@98
   140
                </not>
franta-hg@98
   141
                <or>
franta-hg@98
   142
                    <isfalse value="${directory.deployment.supported}"/>
franta-hg@98
   143
                    <isset property="dist.ear.dir"/>
franta-hg@98
   144
                </or>
franta-hg@98
   145
            </and>
franta-hg@98
   146
        </condition>
franta-hg@98
   147
        <condition property="do.tmp.war.package">
franta-hg@98
   148
            <or>
franta-hg@98
   149
                <isfalse value="${directory.deployment.supported}"/>
franta-hg@98
   150
                <isset property="dist.ear.dir"/>
franta-hg@98
   151
            </or>
franta-hg@98
   152
        </condition>
franta-hg@98
   153
        <property name="build.meta.inf.dir" value="${build.web.dir}/META-INF"/>
franta-hg@98
   154
        <condition else="" property="application.args.param" value="${application.args}">
franta-hg@98
   155
            <and>
franta-hg@98
   156
                <isset property="application.args"/>
franta-hg@98
   157
                <not>
franta-hg@98
   158
                    <equals arg1="${application.args}" arg2="" trim="true"/>
franta-hg@98
   159
                </not>
franta-hg@98
   160
            </and>
franta-hg@98
   161
        </condition>
franta-hg@98
   162
        <property name="source.encoding" value="${file.encoding}"/>
franta-hg@98
   163
        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
franta-hg@98
   164
            <and>
franta-hg@98
   165
                <isset property="javadoc.encoding"/>
franta-hg@98
   166
                <not>
franta-hg@98
   167
                    <equals arg1="${javadoc.encoding}" arg2=""/>
franta-hg@98
   168
                </not>
franta-hg@98
   169
            </and>
franta-hg@98
   170
        </condition>
franta-hg@98
   171
        <property name="javadoc.encoding.used" value="${source.encoding}"/>
franta-hg@98
   172
        <property name="includes" value="**"/>
franta-hg@98
   173
        <property name="excludes" value=""/>
franta-hg@98
   174
        <property name="runmain.jvmargs" value=""/>
franta-hg@98
   175
        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
franta-hg@98
   176
        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
franta-hg@98
   177
            <length length="0" string="${endorsed.classpath}" when="greater"/>
franta-hg@98
   178
        </condition>
franta-hg@98
   179
    </target>
franta-hg@98
   180
    <target depends="init" name="-init-cos" unless="deploy.on.save">
franta-hg@98
   181
        <condition property="deploy.on.save" value="true">
franta-hg@98
   182
            <istrue value="${j2ee.deploy.on.save}"/>
franta-hg@98
   183
        </condition>
franta-hg@98
   184
    </target>
franta-hg@98
   185
    <target name="-post-init">
franta-hg@98
   186
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   187
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   188
    </target>
franta-hg@98
   189
    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
franta-hg@98
   190
        <fail unless="src.dir">Must set src.dir</fail>
franta-hg@98
   191
        <fail unless="test.src.dir">Must set test.src.dir</fail>
franta-hg@98
   192
        <fail unless="build.dir">Must set build.dir</fail>
franta-hg@98
   193
        <fail unless="build.web.dir">Must set build.web.dir</fail>
franta-hg@98
   194
        <fail unless="build.generated.dir">Must set build.generated.dir</fail>
franta-hg@98
   195
        <fail unless="dist.dir">Must set dist.dir</fail>
franta-hg@98
   196
        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
franta-hg@98
   197
        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
franta-hg@98
   198
        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
franta-hg@98
   199
        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
franta-hg@98
   200
        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
franta-hg@98
   201
        <fail unless="dist.war">Must set dist.war</fail>
franta-hg@142
   202
        <condition property="missing.j2ee.server.home">
franta-hg@142
   203
            <and>
franta-hg@142
   204
                <matches pattern="j2ee.server.home" string="${j2ee.platform.classpath}"/>
franta-hg@142
   205
                <not>
franta-hg@142
   206
                    <isset property="j2ee.server.home"/>
franta-hg@142
   207
                </not>
franta-hg@142
   208
            </and>
franta-hg@142
   209
        </condition>
franta-hg@142
   210
        <fail if="missing.j2ee.server.home">
franta-hg@142
   211
The Java EE server classpath is not correctly set up - server home directory is missing.
franta-hg@142
   212
Either open the project in the IDE and assign the server or setup the server classpath manually.
franta-hg@142
   213
For example like this:
franta-hg@142
   214
   ant -Dj2ee.server.home=&lt;app_server_installation_directory&gt;
franta-hg@142
   215
                </fail>
franta-hg@98
   216
        <fail unless="j2ee.platform.classpath">
franta-hg@98
   217
The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
franta-hg@98
   218
Either open the project in the IDE and assign the server or setup the server classpath manually.
franta-hg@98
   219
For example like this:
franta-hg@98
   220
   ant -Duser.properties.file=&lt;path_to_property_file&gt; (where you put the property "j2ee.platform.classpath" in a .properties file)
franta-hg@98
   221
or ant -Dj2ee.platform.classpath=&lt;server_classpath&gt; (where no properties file is used)
franta-hg@98
   222
                </fail>
franta-hg@98
   223
    </target>
franta-hg@98
   224
    <target name="-init-macrodef-property">
franta-hg@98
   225
        <macrodef name="property" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   226
            <attribute name="name"/>
franta-hg@98
   227
            <attribute name="value"/>
franta-hg@98
   228
            <sequential>
franta-hg@98
   229
                <property name="@{name}" value="${@{value}}"/>
franta-hg@98
   230
            </sequential>
franta-hg@98
   231
        </macrodef>
franta-hg@98
   232
    </target>
franta-hg@142
   233
    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
franta-hg@98
   234
        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
franta-hg@98
   235
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@98
   236
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@98
   237
            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@142
   238
            <attribute default="${javac.processorpath}" name="processorpath"/>
franta-hg@142
   239
            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
franta-hg@142
   240
            <attribute default="${includes}" name="includes"/>
franta-hg@142
   241
            <attribute default="${excludes}" name="excludes"/>
franta-hg@142
   242
            <attribute default="${javac.debug}" name="debug"/>
franta-hg@142
   243
            <attribute default="${empty.dir}" name="gensrcdir"/>
franta-hg@142
   244
            <element name="customize" optional="true"/>
franta-hg@142
   245
            <sequential>
franta-hg@142
   246
                <property location="${build.dir}/empty" name="empty.dir"/>
franta-hg@142
   247
                <mkdir dir="${empty.dir}"/>
franta-hg@142
   248
                <mkdir dir="@{apgeneratedsrcdir}"/>
franta-hg@142
   249
                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
franta-hg@142
   250
                    <src>
franta-hg@142
   251
                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
franta-hg@142
   252
                            <include name="*"/>
franta-hg@142
   253
                        </dirset>
franta-hg@142
   254
                    </src>
franta-hg@142
   255
                    <classpath>
franta-hg@142
   256
                        <path path="@{classpath}"/>
franta-hg@142
   257
                    </classpath>
franta-hg@142
   258
                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@142
   259
                    <compilerarg line="${javac.compilerargs}"/>
franta-hg@142
   260
                    <compilerarg value="-processorpath"/>
franta-hg@142
   261
                    <compilerarg path="@{processorpath}:${empty.dir}"/>
franta-hg@142
   262
                    <compilerarg line="${ap.processors.internal}"/>
franta-hg@142
   263
                    <compilerarg value="-s"/>
franta-hg@142
   264
                    <compilerarg path="@{apgeneratedsrcdir}"/>
franta-hg@142
   265
                    <compilerarg line="${ap.proc.none.internal}"/>
franta-hg@142
   266
                    <customize/>
franta-hg@142
   267
                </javac>
franta-hg@142
   268
            </sequential>
franta-hg@142
   269
        </macrodef>
franta-hg@142
   270
    </target>
franta-hg@142
   271
    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
franta-hg@142
   272
        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
franta-hg@142
   273
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@142
   274
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@142
   275
            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@142
   276
            <attribute default="${javac.processorpath}" name="processorpath"/>
franta-hg@142
   277
            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
franta-hg@98
   278
            <attribute default="${includes}" name="includes"/>
franta-hg@98
   279
            <attribute default="${excludes}" name="excludes"/>
franta-hg@98
   280
            <attribute default="${javac.debug}" name="debug"/>
franta-hg@98
   281
            <attribute default="${empty.dir}" name="gensrcdir"/>
franta-hg@98
   282
            <element name="customize" optional="true"/>
franta-hg@98
   283
            <sequential>
franta-hg@98
   284
                <property location="${build.dir}/empty" name="empty.dir"/>
franta-hg@98
   285
                <mkdir dir="${empty.dir}"/>
franta-hg@98
   286
                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
franta-hg@98
   287
                    <src>
franta-hg@98
   288
                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
franta-hg@98
   289
                            <include name="*"/>
franta-hg@98
   290
                        </dirset>
franta-hg@98
   291
                    </src>
franta-hg@98
   292
                    <classpath>
franta-hg@98
   293
                        <path path="@{classpath}"/>
franta-hg@98
   294
                    </classpath>
franta-hg@98
   295
                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@98
   296
                    <compilerarg line="${javac.compilerargs}"/>
franta-hg@98
   297
                    <customize/>
franta-hg@98
   298
                </javac>
franta-hg@98
   299
            </sequential>
franta-hg@98
   300
        </macrodef>
franta-hg@98
   301
    </target>
franta-hg@142
   302
    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
franta-hg@142
   303
        <macrodef name="depend" uri="http://www.netbeans.org/ns/web-project/2">
franta-hg@142
   304
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@142
   305
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@142
   306
            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@142
   307
            <sequential>
franta-hg@142
   308
                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
franta-hg@142
   309
                    <classpath>
franta-hg@142
   310
                        <path path="@{classpath}"/>
franta-hg@142
   311
                    </classpath>
franta-hg@142
   312
                </depend>
franta-hg@142
   313
            </sequential>
franta-hg@142
   314
        </macrodef>
franta-hg@142
   315
        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/web-project/2">
franta-hg@142
   316
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@142
   317
            <sequential>
franta-hg@142
   318
                <fail unless="javac.includes">Must set javac.includes</fail>
franta-hg@142
   319
                <pathconvert pathsep="," property="javac.includes.binary">
franta-hg@142
   320
                    <path>
franta-hg@142
   321
                        <filelist dir="@{destdir}" files="${javac.includes}"/>
franta-hg@142
   322
                    </path>
franta-hg@142
   323
                    <globmapper from="*.java" to="*.class"/>
franta-hg@142
   324
                </pathconvert>
franta-hg@142
   325
                <delete>
franta-hg@142
   326
                    <files includes="${javac.includes.binary}"/>
franta-hg@142
   327
                </delete>
franta-hg@142
   328
            </sequential>
franta-hg@142
   329
        </macrodef>
franta-hg@142
   330
    </target>
franta-hg@98
   331
    <target name="-init-macrodef-junit">
franta-hg@98
   332
        <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2">
franta-hg@98
   333
            <attribute default="${includes}" name="includes"/>
franta-hg@98
   334
            <attribute default="${excludes}" name="excludes"/>
franta-hg@98
   335
            <attribute default="**" name="testincludes"/>
franta-hg@98
   336
            <sequential>
franta-hg@98
   337
                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
franta-hg@98
   338
                    <batchtest todir="${build.test.results.dir}">
franta-hg@98
   339
                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
franta-hg@98
   340
                            <filename name="@{testincludes}"/>
franta-hg@98
   341
                        </fileset>
franta-hg@98
   342
                    </batchtest>
franta-hg@98
   343
                    <classpath>
franta-hg@98
   344
                        <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/>
franta-hg@98
   345
                    </classpath>
franta-hg@98
   346
                    <syspropertyset>
franta-hg@98
   347
                        <propertyref prefix="test-sys-prop."/>
franta-hg@98
   348
                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
franta-hg@98
   349
                    </syspropertyset>
franta-hg@98
   350
                    <formatter type="brief" usefile="false"/>
franta-hg@98
   351
                    <formatter type="xml"/>
franta-hg@98
   352
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@98
   353
                    <jvmarg line="${runmain.jvmargs}"/>
franta-hg@98
   354
                </junit>
franta-hg@98
   355
            </sequential>
franta-hg@98
   356
        </macrodef>
franta-hg@98
   357
    </target>
franta-hg@98
   358
    <target name="-init-macrodef-java">
franta-hg@98
   359
        <macrodef name="java" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   360
            <attribute default="${main.class}" name="classname"/>
franta-hg@98
   361
            <attribute default="${debug.classpath}" name="classpath"/>
franta-hg@98
   362
            <element name="customize" optional="true"/>
franta-hg@98
   363
            <sequential>
franta-hg@98
   364
                <java classname="@{classname}" fork="true">
franta-hg@98
   365
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@98
   366
                    <jvmarg line="${runmain.jvmargs}"/>
franta-hg@98
   367
                    <classpath>
franta-hg@98
   368
                        <path path="@{classpath}:${j2ee.platform.classpath}"/>
franta-hg@98
   369
                    </classpath>
franta-hg@98
   370
                    <syspropertyset>
franta-hg@98
   371
                        <propertyref prefix="run-sys-prop."/>
franta-hg@98
   372
                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
franta-hg@98
   373
                    </syspropertyset>
franta-hg@98
   374
                    <customize/>
franta-hg@98
   375
                </java>
franta-hg@98
   376
            </sequential>
franta-hg@98
   377
        </macrodef>
franta-hg@98
   378
    </target>
franta-hg@98
   379
    <target name="-init-macrodef-nbjsdebug">
franta-hg@98
   380
        <macrodef name="nbjsdebugstart" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   381
            <attribute default="${client.url}" name="webUrl"/>
franta-hg@98
   382
            <sequential>
franta-hg@98
   383
                <nbjsdebugstart urlPart="${client.urlPart}" webUrl="@{webUrl}"/>
franta-hg@98
   384
            </sequential>
franta-hg@98
   385
        </macrodef>
franta-hg@98
   386
    </target>
franta-hg@98
   387
    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
franta-hg@98
   388
        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   389
            <attribute default="${main.class}" name="name"/>
franta-hg@98
   390
            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@98
   391
            <sequential>
franta-hg@98
   392
                <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}">
franta-hg@98
   393
                    <classpath>
franta-hg@98
   394
                        <path path="@{classpath}"/>
franta-hg@98
   395
                    </classpath>
franta-hg@98
   396
                </nbjpdastart>
franta-hg@98
   397
            </sequential>
franta-hg@98
   398
        </macrodef>
franta-hg@98
   399
        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   400
            <attribute default="${build.classes.dir}" name="dir"/>
franta-hg@98
   401
            <sequential>
franta-hg@98
   402
                <nbjpdareload>
franta-hg@98
   403
                    <fileset dir="@{dir}" includes="${fix.classes}">
franta-hg@98
   404
                        <include name="${fix.includes}*.class"/>
franta-hg@98
   405
                    </fileset>
franta-hg@98
   406
                </nbjpdareload>
franta-hg@98
   407
            </sequential>
franta-hg@98
   408
        </macrodef>
franta-hg@98
   409
        <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   410
            <sequential>
franta-hg@98
   411
                <nbjpdaappreloaded/>
franta-hg@98
   412
            </sequential>
franta-hg@98
   413
        </macrodef>
franta-hg@98
   414
    </target>
franta-hg@98
   415
    <target name="-init-debug-args">
franta-hg@98
   416
        <property name="version-output" value="java version &quot;${ant.java.version}"/>
franta-hg@98
   417
        <condition property="have-jdk-older-than-1.4">
franta-hg@98
   418
            <or>
franta-hg@98
   419
                <contains string="${version-output}" substring="java version &quot;1.0"/>
franta-hg@98
   420
                <contains string="${version-output}" substring="java version &quot;1.1"/>
franta-hg@98
   421
                <contains string="${version-output}" substring="java version &quot;1.2"/>
franta-hg@98
   422
                <contains string="${version-output}" substring="java version &quot;1.3"/>
franta-hg@98
   423
            </or>
franta-hg@98
   424
        </condition>
franta-hg@98
   425
        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
franta-hg@98
   426
            <istrue value="${have-jdk-older-than-1.4}"/>
franta-hg@98
   427
        </condition>
franta-hg@98
   428
        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
franta-hg@98
   429
            <os family="windows"/>
franta-hg@98
   430
        </condition>
franta-hg@98
   431
        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
franta-hg@98
   432
            <isset property="debug.transport"/>
franta-hg@98
   433
        </condition>
franta-hg@98
   434
    </target>
franta-hg@98
   435
    <target depends="-init-debug-args" name="-init-macrodef-debug">
franta-hg@98
   436
        <macrodef name="debug" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@98
   437
            <attribute default="${main.class}" name="classname"/>
franta-hg@98
   438
            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@98
   439
            <attribute default="${application.args.param}" name="args"/>
franta-hg@98
   440
            <element name="customize" optional="true"/>
franta-hg@98
   441
            <sequential>
franta-hg@98
   442
                <java classname="@{classname}" fork="true">
franta-hg@98
   443
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@98
   444
                    <jvmarg line="${debug-args-line}"/>
franta-hg@98
   445
                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
franta-hg@98
   446
                    <jvmarg line="${runmain.jvmargs}"/>
franta-hg@98
   447
                    <classpath>
franta-hg@98
   448
                        <path path="@{classpath}"/>
franta-hg@98
   449
                    </classpath>
franta-hg@98
   450
                    <syspropertyset>
franta-hg@98
   451
                        <propertyref prefix="run-sys-prop."/>
franta-hg@98
   452
                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
franta-hg@98
   453
                    </syspropertyset>
franta-hg@98
   454
                    <arg line="@{args}"/>
franta-hg@98
   455
                    <customize/>
franta-hg@98
   456
                </java>
franta-hg@98
   457
            </sequential>
franta-hg@98
   458
        </macrodef>
franta-hg@98
   459
    </target>
franta-hg@98
   460
    <target name="-init-taskdefs">
franta-hg@98
   461
        <fail unless="libs.CopyLibs.classpath">
franta-hg@98
   462
The libs.CopyLibs.classpath property is not set up.
franta-hg@98
   463
This property must point to 
franta-hg@98
   464
org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
franta-hg@98
   465
of NetBeans IDE installation and is usually located at 
franta-hg@98
   466
&lt;netbeans_installation&gt;/java&lt;version&gt;/ant/extra folder.
franta-hg@98
   467
Either open the project in the IDE and make sure CopyLibs library
franta-hg@98
   468
exists or setup the property manually. For example like this:
franta-hg@98
   469
 ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
franta-hg@98
   470
                </fail>
franta-hg@98
   471
        <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
franta-hg@98
   472
    </target>
franta-hg@142
   473
    <target name="-init-ap-cmdline-properties">
franta-hg@142
   474
        <property name="annotation.processing.enabled" value="true"/>
franta-hg@142
   475
        <property name="annotation.processing.processors.list" value=""/>
franta-hg@142
   476
        <property name="annotation.processing.run.all.processors" value="true"/>
franta-hg@142
   477
        <property name="javac.processorpath" value="${javac.classpath}"/>
franta-hg@142
   478
        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
franta-hg@142
   479
        <condition property="ap.supported.internal" value="true">
franta-hg@142
   480
            <not>
franta-hg@142
   481
                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
franta-hg@142
   482
            </not>
franta-hg@142
   483
        </condition>
franta-hg@142
   484
    </target>
franta-hg@142
   485
    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
franta-hg@142
   486
        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
franta-hg@142
   487
            <isfalse value="${annotation.processing.run.all.processors}"/>
franta-hg@142
   488
        </condition>
franta-hg@142
   489
        <condition else="" property="ap.proc.none.internal" value="-proc:none">
franta-hg@142
   490
            <isfalse value="${annotation.processing.enabled}"/>
franta-hg@142
   491
        </condition>
franta-hg@142
   492
    </target>
franta-hg@142
   493
    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
franta-hg@142
   494
        <property name="ap.cmd.line.internal" value=""/>
franta-hg@142
   495
    </target>
franta-hg@142
   496
    <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-java,-init-macrodef-nbjpda,-init-macrodef-nbjsdebug,-init-macrodef-debug,-init-taskdefs,-init-ap-cmdline" name="init"/>
franta-hg@98
   497
    <!--
franta-hg@98
   498
                COMPILATION SECTION
franta-hg@98
   499
            -->
franta-hg@100
   500
    <target depends="init" if="no.dist.ear.dir" name="deps-module-jar" unless="no.deps">
franta-hg@100
   501
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="jar">
franta-hg@100
   502
            <property name="deploy.on.save" value="false"/>
franta-hg@100
   503
        </ant>
franta-hg@100
   504
    </target>
franta-hg@100
   505
    <target depends="init" if="dist.ear.dir" name="deps-ear-jar" unless="no.deps">
franta-hg@100
   506
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="jar">
franta-hg@100
   507
            <property name="deploy.on.save" value="false"/>
franta-hg@100
   508
        </ant>
franta-hg@100
   509
    </target>
franta-hg@98
   510
    <target depends="init, deps-module-jar, deps-ear-jar" name="deps-jar" unless="no.deps"/>
franta-hg@98
   511
    <target depends="init,deps-jar" name="-pre-pre-compile">
franta-hg@98
   512
        <mkdir dir="${build.classes.dir}"/>
franta-hg@98
   513
    </target>
franta-hg@98
   514
    <target name="-pre-compile">
franta-hg@98
   515
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   516
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   517
    </target>
franta-hg@98
   518
    <target name="-copy-webdir">
franta-hg@98
   519
        <copy todir="${build.web.dir}">
franta-hg@98
   520
            <fileset dir="${web.docbase.dir}" excludes="${build.web.excludes},${excludes}" includes="${includes}"/>
franta-hg@98
   521
        </copy>
franta-hg@98
   522
        <copy todir="${build.web.dir}/WEB-INF">
franta-hg@98
   523
            <fileset dir="${webinf.dir}" excludes="${build.web.excludes}"/>
franta-hg@98
   524
        </copy>
franta-hg@98
   525
    </target>
franta-hg@98
   526
    <target depends="init, deps-jar, -pre-pre-compile, -pre-compile, -copy-manifest, -copy-persistence-xml, -copy-webdir, library-inclusion-in-archive,library-inclusion-in-manifest" if="have.sources" name="-do-compile">
franta-hg@98
   527
        <webproject2:javac destdir="${build.classes.dir}" gensrcdir="${build.generated.sources.dir}"/>
franta-hg@98
   528
        <copy todir="${build.classes.dir}">
franta-hg@98
   529
            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@98
   530
        </copy>
franta-hg@98
   531
    </target>
franta-hg@98
   532
    <target if="has.custom.manifest" name="-copy-manifest">
franta-hg@98
   533
        <mkdir dir="${build.meta.inf.dir}"/>
franta-hg@98
   534
        <copy todir="${build.meta.inf.dir}">
franta-hg@98
   535
            <fileset dir="${conf.dir}" includes="MANIFEST.MF"/>
franta-hg@98
   536
        </copy>
franta-hg@98
   537
    </target>
franta-hg@98
   538
    <target if="has.persistence.xml" name="-copy-persistence-xml">
franta-hg@98
   539
        <mkdir dir="${build.web.dir}/WEB-INF/classes/META-INF"/>
franta-hg@98
   540
        <copy todir="${build.web.dir}/WEB-INF/classes/META-INF">
franta-hg@98
   541
            <fileset dir="${persistence.xml.dir}" includes="persistence.xml"/>
franta-hg@98
   542
        </copy>
franta-hg@98
   543
    </target>
franta-hg@98
   544
    <target name="-post-compile">
franta-hg@98
   545
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   546
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   547
    </target>
franta-hg@98
   548
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
franta-hg@98
   549
    <target name="-pre-compile-single">
franta-hg@98
   550
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   551
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   552
    </target>
franta-hg@98
   553
    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
franta-hg@98
   554
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@98
   555
        <webproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/>
franta-hg@98
   556
        <copy todir="${build.classes.dir}">
franta-hg@98
   557
            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@98
   558
        </copy>
franta-hg@98
   559
    </target>
franta-hg@98
   560
    <target name="-post-compile-single">
franta-hg@98
   561
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   562
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   563
    </target>
franta-hg@98
   564
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
franta-hg@98
   565
    <target depends="compile" description="Test compile JSP pages to expose compilation errors." if="do.compile.jsps" name="compile-jsps">
franta-hg@98
   566
        <mkdir dir="${build.generated.dir}/src"/>
franta-hg@98
   567
        <java classname="org.netbeans.modules.web.project.ant.JspC" failonerror="true" fork="true">
franta-hg@98
   568
            <arg value="-uriroot"/>
franta-hg@98
   569
            <arg file="${basedir}/${build.web.dir}"/>
franta-hg@98
   570
            <arg value="-d"/>
franta-hg@98
   571
            <arg file="${basedir}/${build.generated.dir}/src"/>
franta-hg@98
   572
            <arg value="-die1"/>
franta-hg@98
   573
            <arg value="-compilerSourceVM ${javac.source}"/>
franta-hg@98
   574
            <arg value="-compilerTargetVM ${javac.target}"/>
franta-hg@98
   575
            <arg value="-javaEncoding ${source.encoding}"/>
franta-hg@142
   576
            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
franta-hg@98
   577
        </java>
franta-hg@98
   578
        <mkdir dir="${build.generated.dir}/classes"/>
franta-hg@142
   579
        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"/>
franta-hg@98
   580
    </target>
franta-hg@98
   581
    <target depends="compile" if="jsp.includes" name="-do-compile-single-jsp">
franta-hg@98
   582
        <fail unless="javac.jsp.includes">Must select some files in the IDE or set javac.jsp.includes</fail>
franta-hg@98
   583
        <mkdir dir="${build.generated.dir}/src"/>
franta-hg@98
   584
        <java classname="org.netbeans.modules.web.project.ant.JspCSingle" failonerror="true" fork="true">
franta-hg@98
   585
            <arg value="-uriroot"/>
franta-hg@98
   586
            <arg file="${basedir}/${build.web.dir}"/>
franta-hg@98
   587
            <arg value="-d"/>
franta-hg@98
   588
            <arg file="${basedir}/${build.generated.dir}/src"/>
franta-hg@98
   589
            <arg value="-die1"/>
franta-hg@98
   590
            <arg value="-jspc.files"/>
franta-hg@98
   591
            <arg path="${jsp.includes}"/>
franta-hg@98
   592
            <arg value="-compilerSourceVM ${javac.source}"/>
franta-hg@98
   593
            <arg value="-compilerTargetVM ${javac.target}"/>
franta-hg@98
   594
            <arg value="-javaEncoding ${source.encoding}"/>
franta-hg@142
   595
            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
franta-hg@98
   596
        </java>
franta-hg@98
   597
        <mkdir dir="${build.generated.dir}/classes"/>
franta-hg@142
   598
        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src">
franta-hg@98
   599
            <customize>
franta-hg@98
   600
                <patternset includes="${javac.jsp.includes}"/>
franta-hg@98
   601
            </customize>
franta-hg@98
   602
        </webproject2:javac>
franta-hg@98
   603
    </target>
franta-hg@98
   604
    <target name="compile-single-jsp">
franta-hg@98
   605
        <fail unless="jsp.includes">Must select a file in the IDE or set jsp.includes</fail>
franta-hg@98
   606
        <antcall target="-do-compile-single-jsp"/>
franta-hg@98
   607
    </target>
franta-hg@98
   608
    <!--
franta-hg@98
   609
                DIST BUILDING SECTION
franta-hg@98
   610
            -->
franta-hg@98
   611
    <target name="-pre-dist">
franta-hg@98
   612
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   613
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   614
    </target>
franta-hg@98
   615
    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.without.custom.manifest" name="-do-dist-without-manifest">
franta-hg@98
   616
        <dirname file="${dist.war}" property="dist.jar.dir"/>
franta-hg@98
   617
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@98
   618
        <jar compress="${jar.compress}" jarfile="${dist.war}">
franta-hg@98
   619
            <fileset dir="${build.web.dir}"/>
franta-hg@98
   620
        </jar>
franta-hg@98
   621
    </target>
franta-hg@98
   622
    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.with.custom.manifest" name="-do-dist-with-manifest">
franta-hg@98
   623
        <dirname file="${dist.war}" property="dist.jar.dir"/>
franta-hg@98
   624
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@98
   625
        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
franta-hg@98
   626
            <fileset dir="${build.web.dir}"/>
franta-hg@98
   627
        </jar>
franta-hg@98
   628
    </target>
franta-hg@98
   629
    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.without.custom.manifest" name="-do-tmp-dist-without-manifest">
franta-hg@98
   630
        <dirname file="${dist.war}" property="dist.jar.dir"/>
franta-hg@98
   631
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@98
   632
        <jar compress="${jar.compress}" jarfile="${dist.war}">
franta-hg@98
   633
            <fileset dir="${build.web.dir}"/>
franta-hg@98
   634
        </jar>
franta-hg@98
   635
    </target>
franta-hg@98
   636
    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.with.custom.manifest" name="-do-tmp-dist-with-manifest">
franta-hg@98
   637
        <dirname file="${dist.war}" property="dist.jar.dir"/>
franta-hg@98
   638
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@98
   639
        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
franta-hg@98
   640
            <fileset dir="${build.web.dir}"/>
franta-hg@98
   641
        </jar>
franta-hg@98
   642
    </target>
franta-hg@98
   643
    <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/>
franta-hg@98
   644
    <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest">
franta-hg@100
   645
        <copyfiles files="${reference.nekurak_net-lib.jar}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
franta-hg@98
   646
        <mkdir dir="${build.web.dir}/META-INF"/>
franta-hg@98
   647
        <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/>
franta-hg@98
   648
    </target>
franta-hg@100
   649
    <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
franta-hg@100
   650
        <copyfiles files="${reference.nekurak_net-lib.jar}" todir="${build.web.dir}/WEB-INF/lib"/>
franta-hg@100
   651
    </target>
franta-hg@98
   652
    <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib">
franta-hg@98
   653
        <delete dir="${build.web.dir}/WEB-INF/lib"/>
franta-hg@98
   654
    </target>
franta-hg@98
   655
    <target depends="init,-clean-webinf-lib,compile,compile-jsps,-pre-dist,library-inclusion-in-manifest" if="do.tmp.war.package" name="do-ear-dist">
franta-hg@98
   656
        <dirname file="${dist.ear.war}" property="dist.jar.dir"/>
franta-hg@98
   657
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@98
   658
        <jar compress="${jar.compress}" jarfile="${dist.ear.war}" manifest="${build.web.dir}/META-INF/MANIFEST.MF">
franta-hg@98
   659
            <fileset dir="${build.web.dir}"/>
franta-hg@98
   660
        </jar>
franta-hg@98
   661
    </target>
franta-hg@98
   662
    <target name="-post-dist">
franta-hg@98
   663
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   664
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   665
    </target>
franta-hg@98
   666
    <target depends="init,compile,-pre-dist,do-dist,-post-dist" description="Build distribution (WAR)." name="dist"/>
franta-hg@98
   667
    <target depends="init,-clean-webinf-lib,-init-cos,compile,-pre-dist,do-ear-dist,-post-dist" description="Build distribution (WAR) to be packaged into an EAR." name="dist-ear"/>
franta-hg@98
   668
    <!--
franta-hg@98
   669
                EXECUTION SECTION
franta-hg@98
   670
            -->
franta-hg@98
   671
    <target depends="run-deploy,run-display-browser" description="Deploy to server and show in browser." name="run"/>
franta-hg@98
   672
    <target name="-pre-run-deploy">
franta-hg@98
   673
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   674
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   675
    </target>
franta-hg@98
   676
    <target name="-post-run-deploy">
franta-hg@98
   677
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   678
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   679
    </target>
franta-hg@98
   680
    <target name="-pre-nbmodule-run-deploy">
franta-hg@98
   681
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   682
        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
franta-hg@98
   683
    </target>
franta-hg@98
   684
    <target name="-post-nbmodule-run-deploy">
franta-hg@98
   685
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   686
        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
franta-hg@98
   687
    </target>
franta-hg@98
   688
    <target name="-run-deploy-am">
franta-hg@98
   689
        <!-- Task to deploy to the Access Manager runtime. -->
franta-hg@98
   690
    </target>
franta-hg@98
   691
    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest,-pre-run-deploy,-pre-nbmodule-run-deploy,-run-deploy-nb,-init-deploy-ant,-deploy-ant,-run-deploy-am,-post-nbmodule-run-deploy,-post-run-deploy" name="run-deploy">
franta-hg@98
   692
        <nbjpdaappreloaded/>
franta-hg@98
   693
    </target>
franta-hg@98
   694
    <target if="netbeans.home" name="-run-deploy-nb">
franta-hg@98
   695
        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/>
franta-hg@98
   696
    </target>
franta-hg@98
   697
    <target name="-init-deploy-ant" unless="netbeans.home">
franta-hg@98
   698
        <property name="deploy.ant.archive" value="${dist.war}"/>
franta-hg@98
   699
        <property name="deploy.ant.docbase.dir" value="${web.docbase.dir}"/>
franta-hg@98
   700
        <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
franta-hg@98
   701
        <property name="deploy.ant.enabled" value="true"/>
franta-hg@98
   702
    </target>
franta-hg@98
   703
    <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
franta-hg@98
   704
    <target if="netbeans.home" name="-run-undeploy-nb">
franta-hg@98
   705
        <fail message="Undeploy is not supported from within the IDE"/>
franta-hg@98
   706
    </target>
franta-hg@98
   707
    <target depends="init,-pre-dist,dist,-post-dist" name="verify">
franta-hg@98
   708
        <nbverify file="${dist.war}"/>
franta-hg@98
   709
    </target>
franta-hg@98
   710
    <target depends="run-deploy,-init-display-browser,-display-browser-nb,-display-browser-cl" name="run-display-browser"/>
franta-hg@98
   711
    <target if="do.display.browser" name="-init-display-browser">
franta-hg@98
   712
        <condition property="do.display.browser.nb">
franta-hg@98
   713
            <isset property="netbeans.home"/>
franta-hg@98
   714
        </condition>
franta-hg@98
   715
        <condition property="do.display.browser.cl">
franta-hg@98
   716
            <isset property="deploy.ant.enabled"/>
franta-hg@98
   717
        </condition>
franta-hg@98
   718
    </target>
franta-hg@98
   719
    <target if="do.display.browser.nb" name="-display-browser-nb">
franta-hg@98
   720
        <nbbrowse url="${client.url}"/>
franta-hg@98
   721
    </target>
franta-hg@98
   722
    <target if="do.display.browser.cl" name="-get-browser" unless="browser">
franta-hg@98
   723
        <condition property="browser" value="rundll32">
franta-hg@98
   724
            <os family="windows"/>
franta-hg@98
   725
        </condition>
franta-hg@98
   726
        <condition else="" property="browser.args" value="url.dll,FileProtocolHandler">
franta-hg@98
   727
            <os family="windows"/>
franta-hg@98
   728
        </condition>
franta-hg@98
   729
        <condition property="browser" value="/usr/bin/open">
franta-hg@98
   730
            <os family="mac"/>
franta-hg@98
   731
        </condition>
franta-hg@98
   732
        <property environment="env"/>
franta-hg@98
   733
        <condition property="browser" value="${env.BROWSER}">
franta-hg@98
   734
            <isset property="env.BROWSER"/>
franta-hg@98
   735
        </condition>
franta-hg@98
   736
        <condition property="browser" value="/usr/bin/firefox">
franta-hg@98
   737
            <available file="/usr/bin/firefox"/>
franta-hg@98
   738
        </condition>
franta-hg@98
   739
        <condition property="browser" value="/usr/local/firefox/firefox">
franta-hg@98
   740
            <available file="/usr/local/firefox/firefox"/>
franta-hg@98
   741
        </condition>
franta-hg@98
   742
        <condition property="browser" value="/usr/bin/mozilla">
franta-hg@98
   743
            <available file="/usr/bin/mozilla"/>
franta-hg@98
   744
        </condition>
franta-hg@98
   745
        <condition property="browser" value="/usr/local/mozilla/mozilla">
franta-hg@98
   746
            <available file="/usr/local/mozilla/mozilla"/>
franta-hg@98
   747
        </condition>
franta-hg@98
   748
        <condition property="browser" value="/usr/sfw/lib/firefox/firefox">
franta-hg@98
   749
            <available file="/usr/sfw/lib/firefox/firefox"/>
franta-hg@98
   750
        </condition>
franta-hg@98
   751
        <condition property="browser" value="/opt/csw/bin/firefox">
franta-hg@98
   752
            <available file="/opt/csw/bin/firefox"/>
franta-hg@98
   753
        </condition>
franta-hg@98
   754
        <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla">
franta-hg@98
   755
            <available file="/usr/sfw/lib/mozilla/mozilla"/>
franta-hg@98
   756
        </condition>
franta-hg@98
   757
        <condition property="browser" value="/opt/csw/bin/mozilla">
franta-hg@98
   758
            <available file="/opt/csw/bin/mozilla"/>
franta-hg@98
   759
        </condition>
franta-hg@98
   760
    </target>
franta-hg@98
   761
    <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl">
franta-hg@98
   762
        <fail unless="browser">
franta-hg@98
   763
                    Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
franta-hg@98
   764
                </fail>
franta-hg@98
   765
        <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/>
franta-hg@98
   766
        <echo>Launching ${browse.url}</echo>
franta-hg@98
   767
        <exec executable="${browser}" spawn="true">
franta-hg@98
   768
            <arg line="${browser.args} ${browse.url}"/>
franta-hg@98
   769
        </exec>
franta-hg@98
   770
    </target>
franta-hg@98
   771
    <target depends="init,-init-cos,compile-single" name="run-main">
franta-hg@98
   772
        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
franta-hg@98
   773
        <webproject1:java classname="${run.class}"/>
franta-hg@98
   774
    </target>
franta-hg@98
   775
    <target depends="init,compile-test-single,-pre-test-run-single" name="run-test-with-main">
franta-hg@98
   776
        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
franta-hg@98
   777
        <webproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
franta-hg@98
   778
    </target>
franta-hg@98
   779
    <!--
franta-hg@98
   780
                DEBUGGING SECTION
franta-hg@98
   781
            -->
franta-hg@98
   782
    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest" description="Debug project in IDE." if="netbeans.home" name="debug">
franta-hg@98
   783
        <nbstartserver debugmode="true"/>
franta-hg@98
   784
        <antcall target="connect-debugger"/>
franta-hg@98
   785
        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="true" forceRedeploy="true"/>
franta-hg@98
   786
        <antcall target="debug-display-browser"/>
franta-hg@98
   787
        <antcall target="connect-client-debugger"/>
franta-hg@98
   788
    </target>
franta-hg@98
   789
    <target if="do.debug.server" name="connect-debugger" unless="is.debugged">
franta-hg@98
   790
        <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
franta-hg@98
   791
            <classpath>
franta-hg@98
   792
                <path path="${debug.classpath}:${j2ee.platform.classpath}"/>
franta-hg@98
   793
            </classpath>
franta-hg@98
   794
            <sourcepath>
franta-hg@98
   795
                <path path="${web.docbase.dir}"/>
franta-hg@98
   796
            </sourcepath>
franta-hg@98
   797
        </nbjpdaconnect>
franta-hg@98
   798
    </target>
franta-hg@98
   799
    <target if="do.display.browser.debug" name="debug-display-browser">
franta-hg@98
   800
        <nbbrowse url="${client.url}"/>
franta-hg@98
   801
    </target>
franta-hg@98
   802
    <target if="do.debug.client" name="connect-client-debugger">
franta-hg@98
   803
        <webproject1:nbjsdebugstart webUrl="${client.url}"/>
franta-hg@98
   804
    </target>
franta-hg@98
   805
    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
franta-hg@98
   806
        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
franta-hg@98
   807
        <webproject1:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
franta-hg@98
   808
    </target>
franta-hg@98
   809
    <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@98
   810
    <target depends="init,compile,compile-jsps,-do-compile-single-jsp,debug" if="netbeans.home" name="debug-single"/>
franta-hg@98
   811
    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
franta-hg@98
   812
        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
franta-hg@98
   813
    </target>
franta-hg@98
   814
    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
franta-hg@98
   815
        <webproject1:nbjpdastart name="${debug.class}"/>
franta-hg@98
   816
    </target>
franta-hg@98
   817
    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
franta-hg@98
   818
        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
franta-hg@98
   819
        <webproject1:debug classname="${debug.class}"/>
franta-hg@98
   820
    </target>
franta-hg@98
   821
    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/>
franta-hg@98
   822
    <target depends="init" name="-pre-debug-fix">
franta-hg@98
   823
        <fail unless="fix.includes">Must set fix.includes</fail>
franta-hg@98
   824
        <property name="javac.includes" value="${fix.includes}.java"/>
franta-hg@98
   825
    </target>
franta-hg@98
   826
    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
franta-hg@98
   827
        <webproject1:nbjpdareload/>
franta-hg@98
   828
    </target>
franta-hg@98
   829
    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
franta-hg@98
   830
    <!--
franta-hg@98
   831
                JAVADOC SECTION
franta-hg@98
   832
            -->
franta-hg@142
   833
    <target depends="init" if="have.sources" name="javadoc-build">
franta-hg@98
   834
        <mkdir dir="${dist.javadoc.dir}"/>
franta-hg@98
   835
        <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@98
   836
            <classpath>
franta-hg@98
   837
                <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
franta-hg@98
   838
            </classpath>
franta-hg@98
   839
            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
franta-hg@98
   840
                <filename name="**/*.java"/>
franta-hg@98
   841
            </fileset>
franta-hg@98
   842
            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@98
   843
                <include name="**/*.java"/>
franta-hg@98
   844
            </fileset>
franta-hg@98
   845
        </javadoc>
franta-hg@151
   846
        <copy todir="${dist.javadoc.dir}">
franta-hg@151
   847
            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
franta-hg@151
   848
                <filename name="**/doc-files/**"/>
franta-hg@151
   849
            </fileset>
franta-hg@151
   850
            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@151
   851
                <include name="**/doc-files/**"/>
franta-hg@151
   852
            </fileset>
franta-hg@151
   853
        </copy>
franta-hg@98
   854
    </target>
franta-hg@98
   855
    <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview">
franta-hg@98
   856
        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
franta-hg@98
   857
    </target>
franta-hg@98
   858
    <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
franta-hg@98
   859
    <!--
franta-hg@98
   860
                
franta-hg@98
   861
                JUNIT COMPILATION SECTION
franta-hg@98
   862
            -->
franta-hg@98
   863
    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
franta-hg@98
   864
        <mkdir dir="${build.test.classes.dir}"/>
franta-hg@98
   865
        <property name="j2ee.platform.embeddableejb.classpath" value=""/>
franta-hg@98
   866
    </target>
franta-hg@98
   867
    <target name="-pre-compile-test">
franta-hg@98
   868
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   869
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   870
    </target>
franta-hg@98
   871
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
franta-hg@98
   872
        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
franta-hg@98
   873
        <copy todir="${build.test.classes.dir}">
franta-hg@98
   874
            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@98
   875
        </copy>
franta-hg@98
   876
    </target>
franta-hg@98
   877
    <target name="-post-compile-test">
franta-hg@98
   878
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   879
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   880
    </target>
franta-hg@98
   881
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
franta-hg@98
   882
    <target name="-pre-compile-test-single">
franta-hg@98
   883
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   884
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   885
    </target>
franta-hg@98
   886
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
franta-hg@98
   887
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@98
   888
        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" srcdir="${test.src.dir}"/>
franta-hg@98
   889
        <copy todir="${build.test.classes.dir}">
franta-hg@98
   890
            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@98
   891
        </copy>
franta-hg@98
   892
    </target>
franta-hg@98
   893
    <target name="-post-compile-test-single">
franta-hg@98
   894
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   895
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   896
    </target>
franta-hg@98
   897
    <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@98
   898
    <!--
franta-hg@98
   899
                
franta-hg@98
   900
                JUNIT EXECUTION SECTION
franta-hg@98
   901
            -->
franta-hg@98
   902
    <target depends="init" if="have.tests" name="-pre-test-run">
franta-hg@98
   903
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@98
   904
    </target>
franta-hg@98
   905
    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
franta-hg@98
   906
        <webproject2:junit testincludes="**/*Test.java"/>
franta-hg@98
   907
    </target>
franta-hg@98
   908
    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
franta-hg@98
   909
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@98
   910
    </target>
franta-hg@98
   911
    <target depends="init" if="have.tests" name="test-report"/>
franta-hg@98
   912
    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
franta-hg@98
   913
    <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@98
   914
    <target depends="init" if="have.tests" name="-pre-test-run-single">
franta-hg@98
   915
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@98
   916
    </target>
franta-hg@98
   917
    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
franta-hg@98
   918
        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
franta-hg@98
   919
        <webproject2:junit excludes="" includes="${test.includes}"/>
franta-hg@98
   920
    </target>
franta-hg@98
   921
    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
franta-hg@98
   922
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@98
   923
    </target>
franta-hg@98
   924
    <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@98
   925
    <!--
franta-hg@98
   926
                
franta-hg@98
   927
                JUNIT DEBUGGING SECTION
franta-hg@98
   928
            -->
franta-hg@98
   929
    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
franta-hg@98
   930
        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
franta-hg@98
   931
        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
franta-hg@98
   932
        <delete file="${test.report.file}"/>
franta-hg@98
   933
        <!-- must exist, otherwise the XML formatter would fail -->
franta-hg@98
   934
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@98
   935
        <webproject1:debug args="${test.class}" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}:${j2ee.platform.embeddableejb.classpath}">
franta-hg@98
   936
            <customize>
franta-hg@98
   937
                <arg value="showoutput=true"/>
franta-hg@98
   938
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
franta-hg@98
   939
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
franta-hg@98
   940
            </customize>
franta-hg@98
   941
        </webproject1:debug>
franta-hg@98
   942
    </target>
franta-hg@98
   943
    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
franta-hg@98
   944
        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
franta-hg@98
   945
    </target>
franta-hg@98
   946
    <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
franta-hg@98
   947
    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
franta-hg@98
   948
        <webproject1:nbjpdareload dir="${build.test.classes.dir}"/>
franta-hg@98
   949
    </target>
franta-hg@98
   950
    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
franta-hg@98
   951
    <!--
franta-hg@98
   952
                
franta-hg@98
   953
                CLEANUP SECTION
franta-hg@98
   954
            -->
franta-hg@100
   955
    <target depends="init" if="no.dist.ear.dir" name="deps-clean" unless="no.deps">
franta-hg@100
   956
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="clean"/>
franta-hg@100
   957
    </target>
franta-hg@98
   958
    <target depends="init" name="do-clean">
franta-hg@98
   959
        <condition property="build.dir.to.clean" value="${build.web.dir}">
franta-hg@98
   960
            <isset property="dist.ear.dir"/>
franta-hg@98
   961
        </condition>
franta-hg@98
   962
        <property name="build.dir.to.clean" value="${build.web.dir}"/>
franta-hg@98
   963
        <delete includeEmptyDirs="true" quiet="true">
franta-hg@98
   964
            <fileset dir="${build.dir.to.clean}/WEB-INF/lib"/>
franta-hg@98
   965
        </delete>
franta-hg@98
   966
        <delete dir="${build.dir}"/>
franta-hg@98
   967
        <available file="${build.dir.to.clean}/WEB-INF/lib" property="status.clean-failed" type="dir"/>
franta-hg@98
   968
        <delete dir="${dist.dir}"/>
franta-hg@98
   969
    </target>
franta-hg@98
   970
    <target depends="do-clean" if="status.clean-failed" name="check-clean">
franta-hg@98
   971
        <echo message="Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. "/>
franta-hg@98
   972
        <echo level="info" message="To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again."/>
franta-hg@98
   973
    </target>
franta-hg@98
   974
    <target depends="init" if="netbeans.home" name="undeploy-clean">
franta-hg@98
   975
        <nbundeploy failOnError="false" startServer="false"/>
franta-hg@98
   976
    </target>
franta-hg@98
   977
    <target name="-post-clean">
franta-hg@98
   978
        <!-- Empty placeholder for easier customization. -->
franta-hg@98
   979
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@98
   980
    </target>
franta-hg@98
   981
    <target depends="init,undeploy-clean,deps-clean,do-clean,check-clean,-post-clean" description="Clean build products." name="clean"/>
franta-hg@98
   982
    <target depends="clean" description="Clean build products." name="clean-ear"/>
franta-hg@98
   983
</project>