Hi,

Thanks for your help and quick reply.  

I tried your suggestion, but still no luck.  Now it appears that the .java
and .class files are being put in web-inf/calsses/rhiuk/test and also
duplicated in web-inf/classes

Also does`nt: -
        
<exclude name="classes/**" />

mean, exclude all files in the directories after classes/   ?

Cheers,
Tom

> -----Original Message-----
> From: Stefan Bodewig [SMTP:[EMAIL PROTECTED]]
> Sent: 10 January 2002 12:11
> To:   [EMAIL PROTECTED]
> Subject:      Re: Excluding files
> 
> On Thu, 10 Jan 2002, Tom Callaghan <[EMAIL PROTECTED]>
> wrote:
> 
> > <war warfile="H:\config\mydomain\applications\myBean.war"
> >      webxml="META-INF\web.xml">
> >     <webinf dir="WEB-INF"/>
> >     <classes dir="WEB-INF\classes\rhiuk\test"/>
> >             <exclude name="**/*.java"/>  
> > </war>
> > 
> > But when I examine the myBean.war file all the .java files are
> > there.
> 
> The <webinf> element is doing that.  You probably wanted to say
> 
> <war warfile="H:\config\mydomain\applications\myBean.war"
>      webxml="META-INF\web.xml">
>       <webinf dir="WEB-INF">
>                 <exclude name="classes/**" />
>         </webinf>
>       <classes dir="WEB-INF\classes\rhiuk\test"/>
>               <exclude name="**/*.java"/>  
>         </classes>
> </war>
> 
> Stefan
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

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

Reply via email to