Try instead: <javac ...> <src refid="src" /> </javac>
... but indeed your 'src' fileset that grabs JARs in not appropriate. <javac> wants .java files as input. Maybe your fileset was for the classpath to use for <javac>? --DD -----Original Message----- From: Laurie Harper [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 10:29 AM To: Ant Users List Subject: Re: Passing a fileset into javac Nope, that gives an error that 'The <javac> task doesn't support the nested "fileset" element.' :-( L. On 10/16/02 3:09 AM, "Frank Schroeder" <[EMAIL PROTECTED]> wrote: > I think you have to do it like this > <javac ...> > <fileset refid="src"/> > </javac> > > Laurie Harper wrote: > >> The documentation for the 'javac' task says it accepts all attributes >> supported by 'fileset'. So I tried this: >> >> <fileset id="src" dir="java"> >> <include name="*.jar"/> >> </fileset> >> >> <javac refid="src" destdir="classes"/> >> >> But I got an error that the 'javac' task doesn't support the 'refid' >> attribute. Is there any way to tell the 'javac' task to operate on the >> contents of a 'fileset'? I'd like to avoid maintaining a set of >> 'include's/'exclude's in two places. >> >> L. >> >> >> -- >> 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]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
