java/nekurak.net-ejb/nbproject/build-impl.xml
author František Kučera <franta-hg@frantovo.cz>
Tue Apr 27 17:13:23 2010 +0200 (2010-04-27)
changeset 108 f74a9fc683da
parent 27 88f3012c60a2
child 142 44ef544460ca
permissions -rw-r--r--
Hlasování: zobrazujeme grafy na základě hlasování uloženého v databázi.
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
  - dist
franta-hg@27
    12
  - execution
franta-hg@27
    13
  - debugging
franta-hg@27
    14
  - javadoc
franta-hg@27
    15
  - cleanup
franta-hg@27
    16
franta-hg@27
    17
        -->
franta-hg@27
    18
<project xmlns:ejbjarproject1="http://www.netbeans.org/ns/j2ee-ejbjarproject/1" xmlns:ejbjarproject2="http://www.netbeans.org/ns/j2ee-ejbjarproject/2" xmlns:ejbjarproject3="http://www.netbeans.org/ns/j2ee-ejbjarproject/3" basedir=".." default="default" name="nekurak.net-ejb-impl">
franta-hg@27
    19
    <import file="ant-deploy.xml"/>
franta-hg@27
    20
    <fail message="Please build using Ant 1.7.1 or higher.">
franta-hg@27
    21
        <condition>
franta-hg@27
    22
            <not>
franta-hg@27
    23
                <antversion atleast="1.7.1"/>
franta-hg@27
    24
            </not>
franta-hg@27
    25
        </condition>
franta-hg@27
    26
    </fail>
franta-hg@27
    27
    <target depends="dist,javadoc" description="Build whole project." name="default"/>
franta-hg@27
    28
    <!-- 
franta-hg@27
    29
                INITIALIZATION SECTION 
franta-hg@27
    30
            -->
franta-hg@27
    31
    <target name="-pre-init">
franta-hg@27
    32
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
    33
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
    34
    </target>
franta-hg@27
    35
    <target depends="-pre-init" name="-init-private">
franta-hg@27
    36
        <property file="nbproject/private/private.properties"/>
franta-hg@27
    37
    </target>
franta-hg@27
    38
    <target depends="-pre-init,-init-private" name="-init-userdir">
franta-hg@27
    39
        <property location="${netbeans.user}/build.properties" name="user.properties.file"/>
franta-hg@27
    40
    </target>
franta-hg@27
    41
    <target depends="-pre-init,-init-private,-init-userdir" name="-init-user">
franta-hg@27
    42
        <property file="${user.properties.file}"/>
franta-hg@27
    43
        <!-- The two properties below are usually overridden -->
franta-hg@27
    44
        <!-- by the active platform. Just a fallback. -->
franta-hg@27
    45
        <property name="default.javac.source" value="1.4"/>
franta-hg@27
    46
        <property name="default.javac.target" value="1.4"/>
franta-hg@27
    47
    </target>
franta-hg@27
    48
    <target depends="-pre-init,-init-private,-init-userdir,-init-user" name="-init-project">
franta-hg@27
    49
        <property file="nbproject/project.properties"/>
franta-hg@27
    50
    </target>
franta-hg@27
    51
    <target depends="-pre-init,-init-private,-init-userdir,-init-user,-init-project,-init-macrodef-property" name="-do-init">
franta-hg@27
    52
        <!-- Ensure configuration directory exists. -->
franta-hg@27
    53
        <mkdir dir="${meta.inf}"/>
franta-hg@27
    54
        <property name="runmain.jvmargs" value=""/>
franta-hg@27
    55
        <condition property="have.tests">
franta-hg@27
    56
            <or>
franta-hg@27
    57
                <available file="${test.src.dir}"/>
franta-hg@27
    58
            </or>
franta-hg@27
    59
        </condition>
franta-hg@27
    60
        <condition property="have.sources">
franta-hg@27
    61
            <or>
franta-hg@27
    62
                <available file="${src.dir}"/>
franta-hg@27
    63
            </or>
franta-hg@27
    64
        </condition>
franta-hg@27
    65
        <condition property="netbeans.home+have.tests">
franta-hg@27
    66
            <and>
franta-hg@27
    67
                <isset property="netbeans.home"/>
franta-hg@27
    68
                <isset property="have.tests"/>
franta-hg@27
    69
            </and>
franta-hg@27
    70
        </condition>
franta-hg@27
    71
        <condition property="no.javadoc.preview">
franta-hg@27
    72
            <isfalse value="${javadoc.preview}"/>
franta-hg@27
    73
        </condition>
franta-hg@27
    74
        <available file="${meta.inf}/MANIFEST.MF" property="has.custom.manifest"/>
franta-hg@27
    75
        <!--
franta-hg@27
    76
                    Variables needed to support directory deployment.
franta-hg@27
    77
                -->
franta-hg@27
    78
        <condition property="do.package.with.custom.manifest.not.directory.deploy">
franta-hg@27
    79
            <and>
franta-hg@27
    80
                <isset property="has.custom.manifest"/>
franta-hg@27
    81
                <isfalse value="${directory.deployment.supported}"/>
franta-hg@27
    82
            </and>
franta-hg@27
    83
        </condition>
franta-hg@27
    84
        <condition property="do.package.without.custom.manifest.not.directory.deploy">
franta-hg@27
    85
            <and>
franta-hg@27
    86
                <not>
franta-hg@27
    87
                    <isset property="has.custom.manifest"/>
franta-hg@27
    88
                </not>
franta-hg@27
    89
                <isfalse value="${directory.deployment.supported}"/>
franta-hg@27
    90
            </and>
franta-hg@27
    91
        </condition>
franta-hg@27
    92
        <!--End Variables needed to support directory deployment.-->
franta-hg@27
    93
        <condition property="classes.dir" value="${build.ear.classes.dir}">
franta-hg@27
    94
            <isset property="dist.ear.dir"/>
franta-hg@27
    95
        </condition>
franta-hg@27
    96
        <property name="classes.dir" value="${build.classes.dir}"/>
franta-hg@27
    97
        <condition property="no.deps">
franta-hg@27
    98
            <and>
franta-hg@27
    99
                <istrue value="${no.dependencies}"/>
franta-hg@27
   100
            </and>
franta-hg@27
   101
        </condition>
franta-hg@27
   102
        <condition property="no.dist.ear.dir">
franta-hg@27
   103
            <not>
franta-hg@27
   104
                <isset property="dist.ear.dir"/>
franta-hg@27
   105
            </not>
franta-hg@27
   106
        </condition>
franta-hg@27
   107
        <property name="source.encoding" value="${file.encoding}"/>
franta-hg@27
   108
        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
franta-hg@27
   109
            <and>
franta-hg@27
   110
                <isset property="javadoc.encoding"/>
franta-hg@27
   111
                <not>
franta-hg@27
   112
                    <equals arg1="${javadoc.encoding}" arg2=""/>
franta-hg@27
   113
                </not>
franta-hg@27
   114
            </and>
franta-hg@27
   115
        </condition>
franta-hg@27
   116
        <property name="javadoc.encoding.used" value="${source.encoding}"/>
franta-hg@27
   117
        <property name="includes" value="**"/>
franta-hg@27
   118
        <property name="excludes" value=""/>
franta-hg@27
   119
        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
franta-hg@27
   120
        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
franta-hg@27
   121
            <length length="0" string="${endorsed.classpath}" when="greater"/>
franta-hg@27
   122
        </condition>
franta-hg@27
   123
    </target>
franta-hg@27
   124
    <target depends="init" name="-init-cos" unless="deploy.on.save">
franta-hg@27
   125
        <condition property="deploy.on.save" value="true">
franta-hg@27
   126
            <istrue value="${j2ee.deploy.on.save}"/>
franta-hg@27
   127
        </condition>
franta-hg@27
   128
    </target>
franta-hg@27
   129
    <target name="-post-init">
franta-hg@27
   130
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   131
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   132
    </target>
franta-hg@27
   133
    <target depends="-pre-init,-init-private,-init-userdir,-init-user,-init-project,-do-init" name="-init-check">
franta-hg@27
   134
        <fail unless="src.dir">Must set src.dir</fail>
franta-hg@27
   135
        <fail unless="test.src.dir">Must set test.src.dir</fail>
franta-hg@27
   136
        <fail unless="build.dir">Must set build.dir</fail>
franta-hg@27
   137
        <fail unless="build.generated.dir">Must set build.generated.dir</fail>
franta-hg@27
   138
        <fail unless="dist.dir">Must set dist.dir</fail>
franta-hg@27
   139
        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
franta-hg@27
   140
        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
franta-hg@27
   141
        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
franta-hg@27
   142
        <fail unless="dist.jar">Must set dist.jar</fail>
franta-hg@27
   143
        <fail unless="j2ee.platform.classpath">
franta-hg@27
   144
The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
franta-hg@27
   145
Either open the project in the IDE and assign the server or setup the server classpath manually.
franta-hg@27
   146
For example like this:
franta-hg@27
   147
   ant -Duser.properties.file=&lt;path_to_property_file&gt; (where you put the property "j2ee.platform.classpath" in a .properties file)
franta-hg@27
   148
or ant -Dj2ee.platform.classpath=&lt;server_classpath&gt; (where no properties file is used)
franta-hg@27
   149
                </fail>
franta-hg@27
   150
    </target>
franta-hg@27
   151
    <target name="-init-macrodef-property">
franta-hg@27
   152
        <macrodef name="property" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/1">
franta-hg@27
   153
            <attribute name="name"/>
franta-hg@27
   154
            <attribute name="value"/>
franta-hg@27
   155
            <sequential>
franta-hg@27
   156
                <property name="@{name}" value="${@{value}}"/>
franta-hg@27
   157
            </sequential>
franta-hg@27
   158
        </macrodef>
franta-hg@27
   159
    </target>
franta-hg@27
   160
    <target name="-init-macrodef-javac">
franta-hg@27
   161
        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/2">
franta-hg@27
   162
            <attribute default="${src.dir}" name="srcdir"/>
franta-hg@27
   163
            <attribute default="${build.classes.dir}" name="destdir"/>
franta-hg@27
   164
            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
franta-hg@27
   165
            <attribute default="${includes}" name="includes"/>
franta-hg@27
   166
            <attribute default="${excludes}" name="excludes"/>
franta-hg@27
   167
            <attribute default="${javac.debug}" name="debug"/>
franta-hg@27
   168
            <attribute default="${empty.dir}" name="gensrcdir"/>
franta-hg@27
   169
            <element name="customize" optional="true"/>
franta-hg@27
   170
            <sequential>
franta-hg@27
   171
                <property name="javac.compilerargs" value=""/>
franta-hg@27
   172
                <property location="${build.dir}/empty" name="empty.dir"/>
franta-hg@27
   173
                <mkdir dir="${empty.dir}"/>
franta-hg@27
   174
                <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@27
   175
                    <src>
franta-hg@27
   176
                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
franta-hg@27
   177
                            <include name="*"/>
franta-hg@27
   178
                        </dirset>
franta-hg@27
   179
                    </src>
franta-hg@27
   180
                    <classpath>
franta-hg@27
   181
                        <path path="@{classpath}"/>
franta-hg@27
   182
                    </classpath>
franta-hg@27
   183
                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@27
   184
                    <compilerarg line="${javac.compilerargs}"/>
franta-hg@27
   185
                    <customize/>
franta-hg@27
   186
                </javac>
franta-hg@27
   187
            </sequential>
franta-hg@27
   188
        </macrodef>
franta-hg@27
   189
    </target>
franta-hg@27
   190
    <target name="-init-macrodef-junit">
franta-hg@27
   191
        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/2">
franta-hg@27
   192
            <attribute default="${includes}" name="includes"/>
franta-hg@27
   193
            <attribute default="${excludes}" name="excludes"/>
franta-hg@27
   194
            <attribute default="**" name="testincludes"/>
franta-hg@27
   195
            <sequential>
franta-hg@27
   196
                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
franta-hg@27
   197
                    <batchtest todir="${build.test.results.dir}">
franta-hg@27
   198
                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
franta-hg@27
   199
                            <filename name="@{testincludes}"/>
franta-hg@27
   200
                        </fileset>
franta-hg@27
   201
                    </batchtest>
franta-hg@27
   202
                    <classpath>
franta-hg@27
   203
                        <path path="${run.test.classpath}"/>
franta-hg@27
   204
                        <path path="${j2ee.platform.classpath}"/>
franta-hg@27
   205
                        <path path="${j2ee.platform.embeddableejb.classpath}"/>
franta-hg@27
   206
                    </classpath>
franta-hg@27
   207
                    <syspropertyset>
franta-hg@27
   208
                        <propertyref prefix="test-sys-prop."/>
franta-hg@27
   209
                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
franta-hg@27
   210
                    </syspropertyset>
franta-hg@27
   211
                    <formatter type="brief" usefile="false"/>
franta-hg@27
   212
                    <formatter type="xml"/>
franta-hg@27
   213
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@27
   214
                    <jvmarg line="${runmain.jvmargs}"/>
franta-hg@27
   215
                </junit>
franta-hg@27
   216
            </sequential>
franta-hg@27
   217
        </macrodef>
franta-hg@27
   218
    </target>
franta-hg@27
   219
    <target name="-init-macrodef-java">
franta-hg@27
   220
        <macrodef name="java" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/3">
franta-hg@27
   221
            <attribute default="${main.class}" name="classname"/>
franta-hg@27
   222
            <element name="customize" optional="true"/>
franta-hg@27
   223
            <sequential>
franta-hg@27
   224
                <java classname="@{classname}" fork="true">
franta-hg@27
   225
                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
franta-hg@27
   226
                    <jvmarg line="${runmain.jvmargs}"/>
franta-hg@27
   227
                    <classpath>
franta-hg@27
   228
                        <path path="${build.classes.dir}:${javac.classpath}:${j2ee.platform.classpath}"/>
franta-hg@27
   229
                    </classpath>
franta-hg@27
   230
                    <syspropertyset>
franta-hg@27
   231
                        <propertyref prefix="run-sys-prop."/>
franta-hg@27
   232
                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
franta-hg@27
   233
                    </syspropertyset>
franta-hg@27
   234
                    <customize/>
franta-hg@27
   235
                </java>
franta-hg@27
   236
            </sequential>
franta-hg@27
   237
        </macrodef>
franta-hg@27
   238
    </target>
franta-hg@27
   239
    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
franta-hg@27
   240
        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/1">
franta-hg@27
   241
            <attribute default="${main.class}" name="name"/>
franta-hg@27
   242
            <attribute default="${debug.classpath}" name="classpath"/>
franta-hg@27
   243
            <sequential>
franta-hg@27
   244
                <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}">
franta-hg@27
   245
                    <classpath>
franta-hg@27
   246
                        <path path="@{classpath}"/>
franta-hg@27
   247
                    </classpath>
franta-hg@27
   248
                </nbjpdastart>
franta-hg@27
   249
            </sequential>
franta-hg@27
   250
        </macrodef>
franta-hg@27
   251
        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/1">
franta-hg@27
   252
            <attribute default="${build.classes.dir}" name="dir"/>
franta-hg@27
   253
            <sequential>
franta-hg@27
   254
                <nbjpdareload>
franta-hg@27
   255
                    <fileset dir="@{dir}" includes="${fix.classes}">
franta-hg@27
   256
                        <include name="${fix.includes}*.class"/>
franta-hg@27
   257
                    </fileset>
franta-hg@27
   258
                </nbjpdareload>
franta-hg@27
   259
            </sequential>
franta-hg@27
   260
        </macrodef>
franta-hg@27
   261
        <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1">
franta-hg@27
   262
            <sequential>
franta-hg@27
   263
                <nbjpdaappreloaded/>
franta-hg@27
   264
            </sequential>
franta-hg@27
   265
        </macrodef>
franta-hg@27
   266
    </target>
franta-hg@27
   267
    <target name="-init-debug-args">
franta-hg@27
   268
        <property name="version-output" value="java version &quot;${ant.java.version}"/>
franta-hg@27
   269
        <condition property="have-jdk-older-than-1.4">
franta-hg@27
   270
            <or>
franta-hg@27
   271
                <contains string="${version-output}" substring="java version &quot;1.0"/>
franta-hg@27
   272
                <contains string="${version-output}" substring="java version &quot;1.1"/>
franta-hg@27
   273
                <contains string="${version-output}" substring="java version &quot;1.2"/>
franta-hg@27
   274
                <contains string="${version-output}" substring="java version &quot;1.3"/>
franta-hg@27
   275
            </or>
franta-hg@27
   276
        </condition>
franta-hg@27
   277
        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
franta-hg@27
   278
            <istrue value="${have-jdk-older-than-1.4}"/>
franta-hg@27
   279
        </condition>
franta-hg@27
   280
        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
franta-hg@27
   281
            <os family="windows"/>
franta-hg@27
   282
        </condition>
franta-hg@27
   283
        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
franta-hg@27
   284
            <isset property="debug.transport"/>
franta-hg@27
   285
        </condition>
franta-hg@27
   286
    </target>
franta-hg@27
   287
    <target depends="-init-debug-args" name="-init-macrodef-debug">
franta-hg@27
   288
        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2ee-ejbjarproject/1">
franta-hg@27
   289
            <attribute default="${main.class}" name="classname"/>
franta-hg@27
   290
            <attribute default="${debug.classpath}" name="classpath"/>
franta-hg@27
   291
            <attribute default="${application.args}" name="args"/>
franta-hg@27
   292
            <element name="customize" optional="true"/>
franta-hg@27
   293
            <sequential>
franta-hg@27
   294
                <java classname="@{classname}" fork="true">
franta-hg@27
   295
                    <jvmarg line="${debug-args-line}"/>
franta-hg@27
   296
                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
franta-hg@27
   297
                    <classpath>
franta-hg@27
   298
                        <path path="@{classpath}"/>
franta-hg@27
   299
                    </classpath>
franta-hg@27
   300
                    <arg line="@{args}"/>
franta-hg@27
   301
                    <customize/>
franta-hg@27
   302
                </java>
franta-hg@27
   303
            </sequential>
franta-hg@27
   304
        </macrodef>
franta-hg@27
   305
    </target>
franta-hg@27
   306
    <target name="-init-taskdefs">
franta-hg@27
   307
        <fail unless="libs.CopyLibs.classpath">
franta-hg@27
   308
The libs.CopyLibs.classpath property is not set up.
franta-hg@27
   309
This property must point to 
franta-hg@27
   310
org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
franta-hg@27
   311
of NetBeans IDE installation and is usually located at 
franta-hg@27
   312
&lt;netbeans_installation&gt;/java&lt;version&gt;/ant/extra folder.
franta-hg@27
   313
Either open the project in the IDE and make sure CopyLibs library
franta-hg@27
   314
exists or setup the property manually. For example like this:
franta-hg@27
   315
 ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
franta-hg@27
   316
                </fail>
franta-hg@27
   317
        <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
franta-hg@27
   318
    </target>
franta-hg@27
   319
    <target depends="-pre-init,-init-private,-init-userdir,-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-debug,-init-taskdefs" name="init"/>
franta-hg@27
   320
    <!--
franta-hg@27
   321
                COMPILATION SECTION
franta-hg@27
   322
            -->
franta-hg@27
   323
    <target depends="init" if="no.dist.ear.dir" name="-deps-module-jar" unless="no.deps">
franta-hg@108
   324
        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
franta-hg@108
   325
            <property name="deploy.on.save" value="false"/>
franta-hg@108
   326
        </ant>
franta-hg@27
   327
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="jar">
franta-hg@27
   328
            <property name="deploy.on.save" value="false"/>
franta-hg@27
   329
        </ant>
franta-hg@27
   330
    </target>
franta-hg@27
   331
    <target depends="init" if="dist.ear.dir" name="-deps-ear-jar" unless="no.deps">
franta-hg@108
   332
        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="jar">
franta-hg@108
   333
            <property name="deploy.on.save" value="false"/>
franta-hg@108
   334
        </ant>
franta-hg@27
   335
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="jar">
franta-hg@27
   336
            <property name="deploy.on.save" value="false"/>
franta-hg@27
   337
        </ant>
franta-hg@27
   338
    </target>
franta-hg@27
   339
    <target depends="init, -deps-module-jar, -deps-ear-jar" name="deps-jar"/>
franta-hg@27
   340
    <target depends="init,deps-jar" name="-pre-pre-compile">
franta-hg@27
   341
        <mkdir dir="${build.classes.dir}"/>
franta-hg@27
   342
        <mkdir dir="${build.ear.classes.dir}"/>
franta-hg@27
   343
    </target>
franta-hg@27
   344
    <target name="-pre-compile">
franta-hg@27
   345
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   346
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   347
    </target>
franta-hg@27
   348
    <target depends="compile" name="library-inclusion-in-archive">
franta-hg@27
   349
        <copyfiles files="${reference.nekurak_net-lib.jar}" todir="${build.classes.dir}"/>
franta-hg@108
   350
        <copyfiles files="${reference.SuperDAO.jar}" todir="${build.classes.dir}"/>
franta-hg@27
   351
    </target>
franta-hg@27
   352
    <target depends="compile" name="library-inclusion-in-manifest">
franta-hg@27
   353
        <copyfiles files="${reference.nekurak_net-lib.jar}" todir="${dist.ear.dir}/lib"/>
franta-hg@108
   354
        <copyfiles files="${reference.SuperDAO.jar}" todir="${dist.ear.dir}/lib"/>
franta-hg@27
   355
        <manifest file="${build.ear.classes.dir}/META-INF/MANIFEST.MF" mode="update"/>
franta-hg@27
   356
    </target>
franta-hg@27
   357
    <target name="-copy-meta-inf">
franta-hg@27
   358
        <copy todir="${classes.dir}">
franta-hg@27
   359
            <fileset dir="${meta.inf}" includes="**/*.dbschema"/>
franta-hg@27
   360
        </copy>
franta-hg@27
   361
        <copy todir="${classes.dir}/META-INF">
franta-hg@27
   362
            <fileset dir="${meta.inf}" excludes="**/*.dbschema **/xml-resources/** ${meta.inf.excludes}"/>
franta-hg@27
   363
        </copy>
franta-hg@27
   364
    </target>
franta-hg@27
   365
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-copy-meta-inf" if="have.sources" name="-do-compile">
franta-hg@27
   366
        <ejbjarproject2:javac destdir="${classes.dir}" gensrcdir="${build.generated.sources.dir}"/>
franta-hg@27
   367
        <copy todir="${classes.dir}">
franta-hg@27
   368
            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@27
   369
        </copy>
franta-hg@27
   370
    </target>
franta-hg@27
   371
    <target name="-post-compile">
franta-hg@27
   372
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   373
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   374
    </target>
franta-hg@27
   375
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
franta-hg@27
   376
    <target name="-pre-compile-single">
franta-hg@27
   377
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   378
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   379
    </target>
franta-hg@27
   380
    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
franta-hg@27
   381
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@27
   382
        <ejbjarproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/>
franta-hg@27
   383
    </target>
franta-hg@27
   384
    <target name="-post-compile-single">
franta-hg@27
   385
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   386
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   387
    </target>
franta-hg@27
   388
    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
franta-hg@27
   389
    <!--
franta-hg@27
   390
                DIST BUILDING SECTION
franta-hg@27
   391
            -->
franta-hg@27
   392
    <target name="-pre-dist">
franta-hg@27
   393
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   394
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   395
    </target>
franta-hg@27
   396
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive" if="has.custom.manifest" name="-do-dist-with-manifest">
franta-hg@27
   397
        <dirname file="${dist.jar}" property="dist.jar.dir"/>
franta-hg@27
   398
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@27
   399
        <jar compress="${jar.compress}" jarfile="${dist.jar}" manifest="${build.classes.dir}/META-INF/MANIFEST.MF">
franta-hg@27
   400
            <fileset dir="${build.classes.dir}"/>
franta-hg@27
   401
        </jar>
franta-hg@27
   402
    </target>
franta-hg@27
   403
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive" name="-do-dist-without-manifest" unless="has.custom.manifest">
franta-hg@27
   404
        <dirname file="${dist.jar}" property="dist.jar.dir"/>
franta-hg@27
   405
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@27
   406
        <jar compress="${jar.compress}" jarfile="${dist.jar}">
franta-hg@27
   407
            <fileset dir="${build.classes.dir}"/>
franta-hg@27
   408
        </jar>
franta-hg@27
   409
    </target>
franta-hg@27
   410
    <!--
franta-hg@27
   411
                TARGETS NEEDED TO SUPPORT DIRECTORY DEPLOYMENT
franta-hg@27
   412
            -->
franta-hg@27
   413
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive" if="do.package.with.custom.manifest.not.directory.deploy" name="-do-tmp-dist-with-manifest">
franta-hg@27
   414
        <dirname file="${dist.jar}" property="dist.jar.dir"/>
franta-hg@27
   415
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@27
   416
        <jar compress="${jar.compress}" jarfile="${dist.jar}" manifest="${build.classes.dir}/META-INF/MANIFEST.MF">
franta-hg@27
   417
            <fileset dir="${build.classes.dir}"/>
franta-hg@27
   418
        </jar>
franta-hg@27
   419
    </target>
franta-hg@27
   420
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive" if="do.package.without.custom.manifest.not.directory.deploy" name="-do-tmp-dist-without-manifest">
franta-hg@27
   421
        <dirname file="${dist.jar}" property="dist.jar.dir"/>
franta-hg@27
   422
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@27
   423
        <jar compress="${jar.compress}" jarfile="${dist.jar}">
franta-hg@27
   424
            <fileset dir="${build.classes.dir}"/>
franta-hg@27
   425
        </jar>
franta-hg@27
   426
    </target>
franta-hg@27
   427
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive, -do-tmp-dist-without-manifest, -do-tmp-dist-with-manifest" name="-do-dist-directory-deploy"/>
franta-hg@27
   428
    <target depends="init,compile,-pre-dist,-do-dist-directory-deploy,-post-dist" description="Build distribution (JAR) - if directory deployment is not supported." name="dist-directory-deploy"/>
franta-hg@27
   429
    <!--
franta-hg@27
   430
                END TARGETS NEEDED TO SUPPORT DIRECTORY DEPLOYMENT
franta-hg@27
   431
            -->
franta-hg@27
   432
    <target depends="init,compile,-pre-dist,library-inclusion-in-archive, -do-dist-without-manifest, -do-dist-with-manifest" name="-do-dist"/>
franta-hg@27
   433
    <target depends="init,compile,-pre-dist,library-inclusion-in-manifest" name="-do-ear-dist">
franta-hg@27
   434
        <dirname file="${dist.ear.jar}" property="dist.jar.dir"/>
franta-hg@27
   435
        <mkdir dir="${dist.jar.dir}"/>
franta-hg@27
   436
        <jar compress="${jar.compress}" jarfile="${dist.ear.jar}" manifest="${build.ear.classes.dir}/META-INF/MANIFEST.MF">
franta-hg@27
   437
            <fileset dir="${build.ear.classes.dir}"/>
franta-hg@27
   438
        </jar>
franta-hg@27
   439
    </target>
franta-hg@27
   440
    <target name="-post-dist">
franta-hg@27
   441
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   442
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   443
    </target>
franta-hg@27
   444
    <target depends="init,compile,-pre-dist,-do-dist,-post-dist" description="Build distribution (JAR)." name="dist"/>
franta-hg@27
   445
    <target depends="init,-init-cos,compile,-pre-dist,-do-ear-dist,-post-dist" description="Build distribution (JAR) to be packaged into an EAR." name="dist-ear"/>
franta-hg@27
   446
    <!--
franta-hg@27
   447
                EXECUTION SECTION
franta-hg@27
   448
            -->
franta-hg@27
   449
    <target depends="run-deploy" description="Deploy to server." name="run"/>
franta-hg@27
   450
    <target name="-init-deploy">
franta-hg@27
   451
        <property name="include.jar.manifest" value=""/>
franta-hg@27
   452
    </target>
franta-hg@27
   453
    <target name="pre-run-deploy">
franta-hg@27
   454
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   455
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   456
    </target>
franta-hg@27
   457
    <target name="post-run-deploy">
franta-hg@27
   458
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   459
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   460
    </target>
franta-hg@27
   461
    <target name="-pre-nbmodule-run-deploy">
franta-hg@27
   462
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   463
        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
franta-hg@27
   464
    </target>
franta-hg@27
   465
    <target name="-post-nbmodule-run-deploy">
franta-hg@27
   466
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   467
        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
franta-hg@27
   468
    </target>
franta-hg@27
   469
    <target name="-run-deploy-am">
franta-hg@27
   470
        <!-- Task to deploy to the Access Manager runtime. -->
franta-hg@27
   471
    </target>
franta-hg@27
   472
    <target depends="init,-init-cos,-init-deploy,compile,library-inclusion-in-archive,dist-directory-deploy,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@27
   473
        <nbjpdaappreloaded/>
franta-hg@27
   474
    </target>
franta-hg@27
   475
    <target if="netbeans.home" name="-run-deploy-nb">
franta-hg@27
   476
        <nbdeploy debugmode="false" forceRedeploy="${forceRedeploy}"/>
franta-hg@27
   477
    </target>
franta-hg@27
   478
    <target name="-init-deploy-ant" unless="netbeans.home">
franta-hg@27
   479
        <property name="deploy.ant.archive" value="${dist.jar}"/>
franta-hg@27
   480
        <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
franta-hg@27
   481
        <property name="deploy.ant.enabled" value="true"/>
franta-hg@27
   482
    </target>
franta-hg@27
   483
    <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
franta-hg@27
   484
    <target if="netbeans.home" name="-run-undeploy-nb">
franta-hg@27
   485
        <fail message="Undeploy is not supported from within the IDE"/>
franta-hg@27
   486
    </target>
franta-hg@27
   487
    <target depends="dist" name="verify">
franta-hg@27
   488
        <nbverify file="${dist.jar}"/>
franta-hg@27
   489
    </target>
franta-hg@27
   490
    <target depends="init,compile-single" name="run-main">
franta-hg@27
   491
        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
franta-hg@27
   492
        <ejbjarproject3:java classname="${run.class}"/>
franta-hg@27
   493
    </target>
franta-hg@27
   494
    <!--
franta-hg@27
   495
                DEBUGGING SECTION
franta-hg@27
   496
            -->
franta-hg@27
   497
    <target depends="init,compile,dist-directory-deploy" description="Debug project in IDE." if="netbeans.home" name="debug">
franta-hg@27
   498
        <nbdeploy debugmode="true"/>
franta-hg@27
   499
        <antcall target="connect-debugger"/>
franta-hg@27
   500
    </target>
franta-hg@27
   501
    <target name="connect-debugger" unless="is.debugged">
franta-hg@27
   502
        <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
franta-hg@27
   503
            <classpath>
franta-hg@27
   504
                <path path="${debug.classpath}"/>
franta-hg@27
   505
            </classpath>
franta-hg@27
   506
            <sourcepath>
franta-hg@27
   507
                <path path="${web.docbase.dir}"/>
franta-hg@27
   508
            </sourcepath>
franta-hg@27
   509
        </nbjpdaconnect>
franta-hg@27
   510
    </target>
franta-hg@27
   511
    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
franta-hg@27
   512
        <ejbjarproject1:nbjpdastart/>
franta-hg@27
   513
    </target>
franta-hg@27
   514
    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
franta-hg@27
   515
        <fail unless="main.class">Must select one file in the IDE or set main.class</fail>
franta-hg@27
   516
        <ejbjarproject1:debug/>
franta-hg@27
   517
    </target>
franta-hg@27
   518
    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/>
franta-hg@27
   519
    <target depends="init" name="-pre-debug-fix">
franta-hg@27
   520
        <fail unless="fix.includes">Must set fix.includes</fail>
franta-hg@27
   521
        <property name="javac.includes" value="${fix.includes}.java"/>
franta-hg@27
   522
    </target>
franta-hg@27
   523
    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
franta-hg@27
   524
        <ejbjarproject1:nbjpdareload/>
franta-hg@27
   525
    </target>
franta-hg@27
   526
    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
franta-hg@27
   527
    <!--
franta-hg@27
   528
                JAVADOC SECTION
franta-hg@27
   529
            -->
franta-hg@27
   530
    <target depends="init" name="javadoc-build">
franta-hg@27
   531
        <mkdir dir="${dist.javadoc.dir}"/>
franta-hg@27
   532
        <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
   533
            <classpath>
franta-hg@27
   534
                <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
franta-hg@27
   535
            </classpath>
franta-hg@27
   536
            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
franta-hg@27
   537
                <filename name="**/*.java"/>
franta-hg@27
   538
            </fileset>
franta-hg@27
   539
            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
franta-hg@27
   540
                <include name="**/*.java"/>
franta-hg@27
   541
            </fileset>
franta-hg@27
   542
        </javadoc>
franta-hg@27
   543
    </target>
franta-hg@27
   544
    <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview">
franta-hg@27
   545
        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
franta-hg@27
   546
    </target>
franta-hg@27
   547
    <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
franta-hg@27
   548
    <!--
franta-hg@27
   549
                JUNIT COMPILATION SECTION
franta-hg@27
   550
            -->
franta-hg@27
   551
    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
franta-hg@27
   552
        <mkdir dir="${build.test.classes.dir}"/>
franta-hg@27
   553
        <property name="j2ee.platform.embeddableejb.classpath" value=""/>
franta-hg@27
   554
    </target>
franta-hg@27
   555
    <target name="-pre-compile-test">
franta-hg@27
   556
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   557
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   558
    </target>
franta-hg@27
   559
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
franta-hg@27
   560
        <ejbjarproject2: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@27
   561
        <copy todir="${build.test.classes.dir}">
franta-hg@27
   562
            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
franta-hg@27
   563
        </copy>
franta-hg@27
   564
    </target>
franta-hg@27
   565
    <target name="-post-compile-test">
franta-hg@27
   566
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   567
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   568
    </target>
franta-hg@27
   569
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
franta-hg@27
   570
    <target name="-pre-compile-test-single">
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@27
   574
    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
franta-hg@27
   575
        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
franta-hg@27
   576
        <ejbjarproject2: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@27
   577
    </target>
franta-hg@27
   578
    <target name="-post-compile-test-single">
franta-hg@27
   579
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   580
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   581
    </target>
franta-hg@27
   582
    <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
   583
    <!--
franta-hg@27
   584
                JUNIT EXECUTION SECTION
franta-hg@27
   585
            -->
franta-hg@27
   586
    <target depends="init" if="have.tests" name="-pre-test-run">
franta-hg@27
   587
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@27
   588
    </target>
franta-hg@27
   589
    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
franta-hg@27
   590
        <ejbjarproject2:junit testincludes="**/*Test.java"/>
franta-hg@27
   591
    </target>
franta-hg@27
   592
    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
franta-hg@27
   593
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@27
   594
    </target>
franta-hg@27
   595
    <target depends="init" if="have.tests" name="test-report"/>
franta-hg@27
   596
    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
franta-hg@27
   597
    <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
   598
    <target depends="init" if="have.tests" name="-pre-test-run-single">
franta-hg@27
   599
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@27
   600
    </target>
franta-hg@27
   601
    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
franta-hg@27
   602
        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
franta-hg@27
   603
        <ejbjarproject2:junit excludes="" includes="${test.includes}"/>
franta-hg@27
   604
    </target>
franta-hg@27
   605
    <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
   606
        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
franta-hg@27
   607
    </target>
franta-hg@27
   608
    <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
   609
    <!--
franta-hg@27
   610
                JUNIT DEBUGGING SECTION
franta-hg@27
   611
            -->
franta-hg@27
   612
    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
franta-hg@27
   613
        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
franta-hg@27
   614
        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
franta-hg@27
   615
        <delete file="${test.report.file}"/>
franta-hg@27
   616
        <!-- the directory must exist, otherwise the XML formatter would fail -->
franta-hg@27
   617
        <mkdir dir="${build.test.results.dir}"/>
franta-hg@27
   618
        <ejbjarproject1: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@27
   619
            <customize>
franta-hg@27
   620
                <arg value="showoutput=true"/>
franta-hg@27
   621
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
franta-hg@27
   622
                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
franta-hg@27
   623
            </customize>
franta-hg@27
   624
        </ejbjarproject1:debug>
franta-hg@27
   625
    </target>
franta-hg@27
   626
    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
franta-hg@27
   627
        <ejbjarproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
franta-hg@27
   628
    </target>
franta-hg@27
   629
    <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
franta-hg@27
   630
    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
franta-hg@27
   631
        <ejbjarproject1:nbjpdareload dir="${build.test.classes.dir}"/>
franta-hg@27
   632
    </target>
franta-hg@27
   633
    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
franta-hg@27
   634
    <!--
franta-hg@27
   635
                CLEANUP SECTION
franta-hg@27
   636
            -->
franta-hg@27
   637
    <target depends="init" if="no.dist.ear.dir" name="deps-clean" unless="no.deps">
franta-hg@108
   638
        <ant antfile="${project.SuperDAO}/build.xml" inheritall="false" target="clean"/>
franta-hg@27
   639
        <ant antfile="${project.nekurak_net-lib}/build.xml" inheritall="false" target="clean"/>
franta-hg@27
   640
    </target>
franta-hg@27
   641
    <target depends="init" name="-do-clean">
franta-hg@27
   642
        <delete dir="${build.dir}"/>
franta-hg@27
   643
        <delete dir="${dist.dir}"/>
franta-hg@27
   644
    </target>
franta-hg@27
   645
    <target name="-post-clean">
franta-hg@27
   646
        <!-- Empty placeholder for easier customization. -->
franta-hg@27
   647
        <!-- You can override this target in the ../build.xml file. -->
franta-hg@27
   648
    </target>
franta-hg@27
   649
    <target depends="init" if="netbeans.home" name="undeploy-clean">
franta-hg@27
   650
        <nbundeploy failOnError="false" startServer="false"/>
franta-hg@27
   651
    </target>
franta-hg@27
   652
    <target depends="init,undeploy-clean,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
franta-hg@27
   653
    <target depends="clean" name="clean-ear"/>
franta-hg@27
   654
</project>