samples/friendpackage/nbproject/build-impl.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:50:27 +0200
changeset 2 d494ad06dbe7
parent 1 de3e5a6c990b
child 4 eafdd59d4ae0
permissions -rw-r--r--
Updated build files
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 *** GENERATED FROM project.xml - DO NOT EDIT  ***
     4 ***         EDIT ../build.xml INSTEAD         ***
     5 
     6 For the purpose of easier reading the script
     7 is divided into following sections:
     8 
     9   - initialization
    10   - compilation
    11   - jar
    12   - execution
    13   - debugging
    14   - javadoc
    15   - junit compilation
    16   - junit execution
    17   - junit debugging
    18   - applet
    19   - cleanup
    20 
    21         -->
    22 <project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject2="http://www.netbeans.org/ns/j2se-project/2" 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="friendpackage-impl">
    23     <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
    24     <!-- 
    25                 ======================
    26                 INITIALIZATION SECTION 
    27                 ======================
    28             -->
    29     <target name="-pre-init">
    30         <!-- Empty placeholder for easier customization. -->
    31         <!-- You can override this target in the ../build.xml file. -->
    32     </target>
    33     <target depends="-pre-init" name="-init-private">
    34         <property file="nbproject/private/config.properties"/>
    35         <property file="nbproject/private/configs/${config}.properties"/>
    36         <property file="nbproject/private/private.properties"/>
    37     </target>
    38     <target depends="-pre-init,-init-private" name="-init-user">
    39         <property file="${user.properties.file}"/>
    40         <!-- The two properties below are usually overridden -->
    41         <!-- by the active platform. Just a fallback. -->
    42         <property name="default.javac.source" value="1.4"/>
    43         <property name="default.javac.target" value="1.4"/>
    44     </target>
    45     <target depends="-pre-init,-init-private,-init-user" name="-init-project">
    46         <property file="nbproject/configs/${config}.properties"/>
    47         <property file="nbproject/project.properties"/>
    48     </target>
    49     <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
    50         <available file="${manifest.file}" property="manifest.available"/>
    51         <condition property="manifest.available+main.class">
    52             <and>
    53                 <isset property="manifest.available"/>
    54                 <isset property="main.class"/>
    55                 <not>
    56                     <equals arg1="${main.class}" arg2="" trim="true"/>
    57                 </not>
    58             </and>
    59         </condition>
    60         <condition property="manifest.available+main.class+mkdist.available">
    61             <and>
    62                 <istrue value="${manifest.available+main.class}"/>
    63                 <isset property="libs.CopyLibs.classpath"/>
    64             </and>
    65         </condition>
    66         <condition property="have.tests">
    67             <or>
    68                 <available file="${test.src.dir}"/>
    69             </or>
    70         </condition>
    71         <condition property="have.sources">
    72             <or>
    73                 <available file="${src.dir}"/>
    74             </or>
    75         </condition>
    76         <condition property="netbeans.home+have.tests">
    77             <and>
    78                 <isset property="netbeans.home"/>
    79                 <isset property="have.tests"/>
    80             </and>
    81         </condition>
    82         <condition property="no.javadoc.preview">
    83             <and>
    84                 <isset property="javadoc.preview"/>
    85                 <isfalse value="${javadoc.preview}"/>
    86             </and>
    87         </condition>
    88         <property name="run.jvmargs" value=""/>
    89         <property name="javac.compilerargs" value=""/>
    90         <property name="work.dir" value="${basedir}"/>
    91         <condition property="no.deps">
    92             <and>
    93                 <istrue value="${no.dependencies}"/>
    94             </and>
    95         </condition>
    96         <property name="javac.debug" value="true"/>
    97         <property name="javadoc.preview" value="true"/>
    98         <property name="application.args" value=""/>
    99         <property name="source.encoding" value="${file.encoding}"/>
   100         <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
   101             <and>
   102                 <isset property="javadoc.encoding"/>
   103                 <not>
   104                     <equals arg1="${javadoc.encoding}" arg2=""/>
   105                 </not>
   106             </and>
   107         </condition>
   108         <property name="javadoc.encoding.used" value="${source.encoding}"/>
   109         <property name="includes" value="**"/>
   110         <property name="excludes" value=""/>
   111     </target>
   112     <target name="-post-init">
   113         <!-- Empty placeholder for easier customization. -->
   114         <!-- You can override this target in the ../build.xml file. -->
   115     </target>
   116     <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
   117         <fail unless="src.dir">Must set src.dir</fail>
   118         <fail unless="test.src.dir">Must set test.src.dir</fail>
   119         <fail unless="build.dir">Must set build.dir</fail>
   120         <fail unless="dist.dir">Must set dist.dir</fail>
   121         <fail unless="build.classes.dir">Must set build.classes.dir</fail>
   122         <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
   123         <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
   124         <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
   125         <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
   126         <fail unless="dist.jar">Must set dist.jar</fail>
   127     </target>
   128     <target name="-init-macrodef-property">
   129         <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
   130             <attribute name="name"/>
   131             <attribute name="value"/>
   132             <sequential>
   133                 <property name="@{name}" value="${@{value}}"/>
   134             </sequential>
   135         </macrodef>
   136     </target>
   137     <target name="-init-macrodef-javac">
   138         <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   139             <attribute default="${src.dir}" name="srcdir"/>
   140             <attribute default="${build.classes.dir}" name="destdir"/>
   141             <attribute default="${javac.classpath}" name="classpath"/>
   142             <attribute default="${includes}" name="includes"/>
   143             <attribute default="${excludes}" name="excludes"/>
   144             <attribute default="${javac.debug}" name="debug"/>
   145             <attribute default="" name="javac.compilerargs.jaxws"/>
   146             <attribute default="" name="sourcepath"/>
   147             <element name="customize" optional="true"/>
   148             <sequential>
   149                 <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}">
   150                     <classpath>
   151                         <path path="@{classpath}"/>
   152                     </classpath>
   153                     <compilerarg line="${javac.compilerargs} @{javac.compilerargs.jaxws}"/>
   154                     <customize/>
   155                 </javac>
   156             </sequential>
   157         </macrodef>
   158         <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
   159             <attribute default="${src.dir}" name="srcdir"/>
   160             <attribute default="${build.classes.dir}" name="destdir"/>
   161             <attribute default="${javac.classpath}" name="classpath"/>
   162             <sequential>
   163                 <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
   164                     <classpath>
   165                         <path path="@{classpath}"/>
   166                     </classpath>
   167                 </depend>
   168             </sequential>
   169         </macrodef>
   170         <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
   171             <attribute default="${build.classes.dir}" name="destdir"/>
   172             <sequential>
   173                 <fail unless="javac.includes">Must set javac.includes</fail>
   174                 <pathconvert pathsep="," property="javac.includes.binary">
   175                     <path>
   176                         <filelist dir="@{destdir}" files="${javac.includes}"/>
   177                     </path>
   178                     <globmapper from="*.java" to="*.class"/>
   179                 </pathconvert>
   180                 <delete>
   181                     <files includes="${javac.includes.binary}"/>
   182                 </delete>
   183             </sequential>
   184         </macrodef>
   185     </target>
   186     <target name="-init-macrodef-junit">
   187         <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   188             <attribute default="${includes}" name="includes"/>
   189             <attribute default="${excludes}" name="excludes"/>
   190             <sequential>
   191                 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true">
   192                     <batchtest todir="${build.test.results.dir}">
   193                         <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   194                             <filename name="**/*Test.java"/>
   195                         </fileset>
   196                     </batchtest>
   197                     <classpath>
   198                         <path path="${run.test.classpath}"/>
   199                     </classpath>
   200                     <syspropertyset>
   201                         <propertyref prefix="test-sys-prop."/>
   202                         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   203                     </syspropertyset>
   204                     <formatter type="brief" usefile="false"/>
   205                     <formatter type="xml"/>
   206                     <jvmarg line="${run.jvmargs}"/>
   207                 </junit>
   208             </sequential>
   209         </macrodef>
   210     </target>
   211     <target name="-init-macrodef-nbjpda">
   212         <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
   213             <attribute default="${main.class}" name="name"/>
   214             <attribute default="${debug.classpath}" name="classpath"/>
   215             <attribute default="" name="stopclassname"/>
   216             <sequential>
   217                 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="dt_socket">
   218                     <classpath>
   219                         <path path="@{classpath}"/>
   220                     </classpath>
   221                 </nbjpdastart>
   222             </sequential>
   223         </macrodef>
   224         <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
   225             <attribute default="${build.classes.dir}" name="dir"/>
   226             <sequential>
   227                 <nbjpdareload>
   228                     <fileset dir="@{dir}" includes="${fix.includes}*.class"/>
   229                 </nbjpdareload>
   230             </sequential>
   231         </macrodef>
   232     </target>
   233     <target name="-init-debug-args">
   234         <property name="version-output" value="java version &quot;${ant.java.version}"/>
   235         <condition property="have-jdk-older-than-1.4">
   236             <or>
   237                 <contains string="${version-output}" substring="java version &quot;1.0"/>
   238                 <contains string="${version-output}" substring="java version &quot;1.1"/>
   239                 <contains string="${version-output}" substring="java version &quot;1.2"/>
   240                 <contains string="${version-output}" substring="java version &quot;1.3"/>
   241             </or>
   242         </condition>
   243         <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
   244             <istrue value="${have-jdk-older-than-1.4}"/>
   245         </condition>
   246     </target>
   247     <target depends="-init-debug-args" name="-init-macrodef-debug">
   248         <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   249             <attribute default="${main.class}" name="classname"/>
   250             <attribute default="${debug.classpath}" name="classpath"/>
   251             <element name="customize" optional="true"/>
   252             <sequential>
   253                 <java classname="@{classname}" dir="${work.dir}" fork="true">
   254                     <jvmarg line="${debug-args-line}"/>
   255                     <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/>
   256                     <jvmarg line="${run.jvmargs}"/>
   257                     <classpath>
   258                         <path path="@{classpath}"/>
   259                     </classpath>
   260                     <syspropertyset>
   261                         <propertyref prefix="run-sys-prop."/>
   262                         <mapper from="run-sys-prop.*" to="*" type="glob"/>
   263                     </syspropertyset>
   264                     <customize/>
   265                 </java>
   266             </sequential>
   267         </macrodef>
   268     </target>
   269     <target name="-init-macrodef-java">
   270         <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   271             <attribute default="${main.class}" name="classname"/>
   272             <element name="customize" optional="true"/>
   273             <sequential>
   274                 <java classname="@{classname}" dir="${work.dir}" fork="true">
   275                     <jvmarg line="${run.jvmargs}"/>
   276                     <classpath>
   277                         <path path="${run.classpath}"/>
   278                     </classpath>
   279                     <syspropertyset>
   280                         <propertyref prefix="run-sys-prop."/>
   281                         <mapper from="run-sys-prop.*" to="*" type="glob"/>
   282                     </syspropertyset>
   283                     <customize/>
   284                 </java>
   285             </sequential>
   286         </macrodef>
   287     </target>
   288     <target name="-init-presetdef-jar">
   289         <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
   290             <jar compress="${jar.compress}" jarfile="${dist.jar}">
   291                 <j2seproject1:fileset dir="${build.classes.dir}"/>
   292             </jar>
   293         </presetdef>
   294     </target>
   295     <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"/>
   296     <!--
   297                 ===================
   298                 COMPILATION SECTION
   299                 ===================
   300             -->
   301     <target depends="init" name="deps-jar" unless="no.deps"/>
   302     <target depends="init,deps-jar" name="-pre-pre-compile">
   303         <mkdir dir="${build.classes.dir}"/>
   304     </target>
   305     <target name="-pre-compile">
   306         <!-- Empty placeholder for easier customization. -->
   307         <!-- You can override this target in the ../build.xml file. -->
   308     </target>
   309     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile" if="have.sources" name="-do-compile">
   310         <j2seproject3:depend/>
   311         <j2seproject3:javac/>
   312         <copy todir="${build.classes.dir}">
   313             <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   314         </copy>
   315     </target>
   316     <target name="-post-compile">
   317         <!-- Empty placeholder for easier customization. -->
   318         <!-- You can override this target in the ../build.xml file. -->
   319     </target>
   320     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
   321     <target name="-pre-compile-single">
   322         <!-- Empty placeholder for easier customization. -->
   323         <!-- You can override this target in the ../build.xml file. -->
   324     </target>
   325     <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
   326         <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   327         <j2seproject3:force-recompile/>
   328         <j2seproject3:javac excludes="" includes="${javac.includes}" sourcepath="${src.dir}"/>
   329     </target>
   330     <target name="-post-compile-single">
   331         <!-- Empty placeholder for easier customization. -->
   332         <!-- You can override this target in the ../build.xml file. -->
   333     </target>
   334     <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
   335     <!--
   336                 ====================
   337                 JAR BUILDING SECTION
   338                 ====================
   339             -->
   340     <target depends="init" name="-pre-pre-jar">
   341         <dirname file="${dist.jar}" property="dist.jar.dir"/>
   342         <mkdir dir="${dist.jar.dir}"/>
   343     </target>
   344     <target name="-pre-jar">
   345         <!-- Empty placeholder for easier customization. -->
   346         <!-- You can override this target in the ../build.xml file. -->
   347     </target>
   348     <target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available">
   349         <j2seproject1:jar/>
   350     </target>
   351     <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class">
   352         <j2seproject1:jar manifest="${manifest.file}"/>
   353     </target>
   354     <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">
   355         <j2seproject1:jar manifest="${manifest.file}">
   356             <j2seproject1:manifest>
   357                 <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
   358             </j2seproject1:manifest>
   359         </j2seproject1:jar>
   360         <echo>To run this application from the command line without Ant, try:</echo>
   361         <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   362         <property location="${dist.jar}" name="dist.jar.resolved"/>
   363         <pathconvert property="run.classpath.with.dist.jar">
   364             <path path="${run.classpath}"/>
   365             <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
   366         </pathconvert>
   367         <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
   368     </target>
   369     <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries">
   370         <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   371         <pathconvert property="run.classpath.without.build.classes.dir">
   372             <path path="${run.classpath}"/>
   373             <map from="${build.classes.dir.resolved}" to=""/>
   374         </pathconvert>
   375         <pathconvert pathsep=" " property="jar.classpath">
   376             <path path="${run.classpath.without.build.classes.dir}"/>
   377             <chainedmapper>
   378                 <flattenmapper/>
   379                 <globmapper from="*" to="lib/*"/>
   380             </chainedmapper>
   381         </pathconvert>
   382         <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   383         <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
   384             <fileset dir="${build.classes.dir}"/>
   385             <manifest>
   386                 <attribute name="Main-Class" value="${main.class}"/>
   387                 <attribute name="Class-Path" value="${jar.classpath}"/>
   388             </manifest>
   389         </copylibs>
   390         <echo>To run this application from the command line without Ant, try:</echo>
   391         <property location="${dist.jar}" name="dist.jar.resolved"/>
   392         <echo>java -jar "${dist.jar.resolved}"</echo>
   393     </target>
   394     <target name="-post-jar">
   395         <!-- Empty placeholder for easier customization. -->
   396         <!-- You can override this target in the ../build.xml file. -->
   397     </target>
   398     <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
   399     <!--
   400                 =================
   401                 EXECUTION SECTION
   402                 =================
   403             -->
   404     <target depends="init,compile" description="Run a main class." name="run">
   405         <j2seproject1:java>
   406             <customize>
   407                 <arg line="${application.args}"/>
   408             </customize>
   409         </j2seproject1:java>
   410     </target>
   411     <target depends="init,compile" name="run-single">
   412         <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
   413         <j2seproject1:java classname="${run.class}"/>
   414     </target>
   415     <!--
   416                 =================
   417                 DEBUGGING SECTION
   418                 =================
   419             -->
   420     <target depends="init" if="netbeans.home" name="-debug-start-debugger">
   421         <j2seproject1:nbjpdastart name="${debug.class}"/>
   422     </target>
   423     <target depends="init,compile" name="-debug-start-debuggee">
   424         <j2seproject3:debug>
   425             <customize>
   426                 <arg line="${application.args}"/>
   427             </customize>
   428         </j2seproject3:debug>
   429     </target>
   430     <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
   431     <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
   432         <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
   433     </target>
   434     <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
   435     <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
   436         <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
   437         <j2seproject3:debug classname="${debug.class}"/>
   438     </target>
   439     <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
   440     <target depends="init" name="-pre-debug-fix">
   441         <fail unless="fix.includes">Must set fix.includes</fail>
   442         <property name="javac.includes" value="${fix.includes}.java"/>
   443     </target>
   444     <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
   445         <j2seproject1:nbjpdareload/>
   446     </target>
   447     <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
   448     <!--
   449                 ===============
   450                 JAVADOC SECTION
   451                 ===============
   452             -->
   453     <target depends="init" name="-javadoc-build">
   454         <mkdir dir="${dist.javadoc.dir}"/>
   455         <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" destdir="${dist.javadoc.dir}" 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}">
   456             <classpath>
   457                 <path path="${javac.classpath}"/>
   458             </classpath>
   459             <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
   460                 <filename name="**/*.java"/>
   461             </fileset>
   462         </javadoc>
   463     </target>
   464     <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
   465         <nbbrowse file="${dist.javadoc.dir}/index.html"/>
   466     </target>
   467     <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
   468     <!--
   469                 =========================
   470                 JUNIT COMPILATION SECTION
   471                 =========================
   472             -->
   473     <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
   474         <mkdir dir="${build.test.classes.dir}"/>
   475     </target>
   476     <target name="-pre-compile-test">
   477         <!-- Empty placeholder for easier customization. -->
   478         <!-- You can override this target in the ../build.xml file. -->
   479     </target>
   480     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
   481         <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
   482         <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
   483         <copy todir="${build.test.classes.dir}">
   484             <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   485         </copy>
   486     </target>
   487     <target name="-post-compile-test">
   488         <!-- Empty placeholder for easier customization. -->
   489         <!-- You can override this target in the ../build.xml file. -->
   490     </target>
   491     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
   492     <target name="-pre-compile-test-single">
   493         <!-- Empty placeholder for easier customization. -->
   494         <!-- You can override this target in the ../build.xml file. -->
   495     </target>
   496     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
   497         <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   498         <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
   499         <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}"/>
   500         <copy todir="${build.test.classes.dir}">
   501             <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   502         </copy>
   503     </target>
   504     <target name="-post-compile-test-single">
   505         <!-- Empty placeholder for easier customization. -->
   506         <!-- You can override this target in the ../build.xml file. -->
   507     </target>
   508     <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
   509     <!--
   510                 =======================
   511                 JUNIT EXECUTION SECTION
   512                 =======================
   513             -->
   514     <target depends="init" if="have.tests" name="-pre-test-run">
   515         <mkdir dir="${build.test.results.dir}"/>
   516     </target>
   517     <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
   518         <j2seproject3:junit/>
   519     </target>
   520     <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
   521         <fail if="tests.failed">Some tests failed; see details above.</fail>
   522     </target>
   523     <target depends="init" if="have.tests" name="test-report"/>
   524     <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
   525     <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
   526     <target depends="init" if="have.tests" name="-pre-test-run-single">
   527         <mkdir dir="${build.test.results.dir}"/>
   528     </target>
   529     <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
   530         <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
   531         <j2seproject3:junit excludes="" includes="${test.includes}"/>
   532     </target>
   533     <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
   534         <fail if="tests.failed">Some tests failed; see details above.</fail>
   535     </target>
   536     <target depends="init,compile-test,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
   537     <!--
   538                 =======================
   539                 JUNIT DEBUGGING SECTION
   540                 =======================
   541             -->
   542     <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
   543         <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
   544         <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
   545         <delete file="${test.report.file}"/>
   546         <mkdir dir="${build.test.results.dir}"/>
   547         <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}">
   548             <customize>
   549                 <syspropertyset>
   550                     <propertyref prefix="test-sys-prop."/>
   551                     <mapper from="test-sys-prop.*" to="*" type="glob"/>
   552                 </syspropertyset>
   553                 <arg value="${test.class}"/>
   554                 <arg value="showoutput=true"/>
   555                 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
   556                 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
   557             </customize>
   558         </j2seproject3:debug>
   559     </target>
   560     <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
   561         <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
   562     </target>
   563     <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
   564     <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
   565         <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
   566     </target>
   567     <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
   568     <!--
   569                 =========================
   570                 APPLET EXECUTION SECTION
   571                 =========================
   572             -->
   573     <target depends="init,compile-single" name="run-applet">
   574         <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   575         <j2seproject1:java classname="sun.applet.AppletViewer">
   576             <customize>
   577                 <arg value="${applet.url}"/>
   578             </customize>
   579         </j2seproject1:java>
   580     </target>
   581     <!--
   582                 =========================
   583                 APPLET DEBUGGING  SECTION
   584                 =========================
   585             -->
   586     <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
   587         <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   588         <j2seproject3:debug classname="sun.applet.AppletViewer">
   589             <customize>
   590                 <arg value="${applet.url}"/>
   591             </customize>
   592         </j2seproject3:debug>
   593     </target>
   594     <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
   595     <!--
   596                 ===============
   597                 CLEANUP SECTION
   598                 ===============
   599             -->
   600     <target depends="init" name="deps-clean" unless="no.deps"/>
   601     <target depends="init" name="-do-clean">
   602         <delete dir="${build.dir}"/>
   603         <delete dir="${dist.dir}"/>
   604     </target>
   605     <target name="-post-clean">
   606         <!-- Empty placeholder for easier customization. -->
   607         <!-- You can override this target in the ../build.xml file. -->
   608     </target>
   609     <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
   610 </project>