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