how does your "file.name" look like? Maybe you have to add "**/" before every filename 
in your filename-file like this:

**/file1
**/file2

another suggestion is to add "'s arround the files:

"**/file1"
"**/file2"


-----Urspr�ngliche Nachricht-----
Von: Ciramella, EJ [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 10. Juli 2003 18:20
An: 'Ant Users List'
Betreff: RE: includesfile


That's an example of include, I understand that, but I'm interested in
having one file contain all the files I'm interested in for a fileset.  Look
at the <fileset> type and you'll see it has an attribute called
includesfile.  

I understand that it looks roughly like this:
<fileset dir=".">
        <includesfile name="file.name"/>
</fileset>

but each time I run this, the output says that it's looking with a
patternSet of includes:[] excludes:[]  - both are empty.

-----Original Message-----
From: Heldstab, Christian [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 10, 2003 12:14 PM
To: Ant Users List
Subject: Re: includesfile


see http://ant.apache.org/manual/index.html --> Concepts and Types


<fileset dir="${server.src}" casesensitive="yes">
  <include name="**/*.java"/>
  <exclude name="**/*Test*"/>
</fileset>


Christian



> Von: Ciramella, EJ [mailto:[EMAIL PROTECTED]
> Gesendet: Donnerstag, 10. Juli 2003 18:06
> An: 'Ant Users List'
> Betreff: includesfile
> 
> 
> could someone give an example of using a fileset with an includes file
> attribute?
> 




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

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

Reply via email to