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