try adding the following to your build.xml and then calling "ant war"
This should generate you a .war file inside your webapps directory.

Jon


  <!-- ===================================================================
-->
  <!-- Compiles the source directory and creates a .war file
-->
  <!-- ===================================================================
-->  
  
  <target name="war" depends="compile">

    <!-- Cleanup any logs before creating war -->
    <delete dir="${build.dest}/../../logs"/>
    <mkdir dir="${build.dest}/../../logs"/>

    <!-- Create the war file -->
    <jar jarfile="../../../${project}.war"
      basedir="../.."
      excludes="**/package.html,**/servlet*.jar,**/build/,**/src/"
    />
  
  </target>

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: 19 July 2001 16:56
> To: [EMAIL PROTECTED]
> Subject: WAR develop
> 
> 
> 
>       Please indicate how I can develop a WAR package of my Turbine
> application or
>       can you please tell me where I can get the information 
> to do this.
> 
>      Donald Duquaine
>      STL Tampa West
>      Analyst / Network Adminstrator
>      mailto:[EMAIL PROTECTED]
> 
> 


--------------------------------------------------
DISCLAIMER: This message contains proprietary
information some or all of which may be
confidential and/or legally privileged. It is for
the intended recipient only who may use and apply
the information only for the intended purpose.
Internet communications are not secure and
therefore the British Biotech group does not
accept legal responsibility for the contents of
this message. Any views or opinions presented are
only those of the author and not those of the
British Biotech group. If you are not the intended
recipient please delete this e-mail and notify the
author immediately by calling ++44 (0)1865 748747;
do not use, disclose, distribute, copy, print or
rely on this e-mail.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to