The way I understand it you can either use
    <fileset dir="src_dir" includes="**/*.jsp,**/*.html,**/*.css" />
or
     <fileset dir="src_dir" >
       <include  name="**/*.jsp" />
       <include  name="**/*.html" />
       <include  name="**/*.css" />
     </fileset>

Klara

> -----Original Message-----
> From: Rob Cartier (Apollo) [mailto:[EMAIL PROTECTED]]
> Sent: den 12 juli 2001 14:52
> To: [EMAIL PROTECTED]
> Subject: Help: comma seperated values in inlcude
> 
> 
> I have been trying to use the include name= parameter  and have had no 
> success
> when trying to do a multiple.
> 
> <<copy todir="../dest/dir" >
>     <fileset dir="src_dir" >
>       <include  name="**/*.jsp,**/*.html,**/*.css" />
>     </fileset>
>   </copy>
> 
> if I try it  with a single pattern all is ok.
> see it in the docs but no examples :(
> 
> 
> 

Reply via email to