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