Oops, typo in my example, I'm trying to pass in a fileset of .java files,
not .jar files...
'refid' on the 'src' element doesn't work in this case either; it wants a
reference to a 'path' not a 'fileset'.
Is there a way to get the base directory used in declaring the fileset from
a fileset reference? (I think I know the answer to that but I thought I'd
ask :-)
L.
On 10/16/02 11:37 AM, "Dominique Devienne" <DDevienne@lgc.com> wrote:
> 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:zodiac@holoweb.net]
> 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" <frank@webraska.com> 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:ant-user-unsubscribe@jakarta.apache.org>
>>> For additional commands, e-mail:
> <mailto:ant-user-help@jakarta.apache.org>
>>>
>>>
>
>
> --
> To unsubscribe, e-mail: <mailto:ant-user-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:ant-user-help@jakarta.apache.org>
>
> --
> To unsubscribe, e-mail: <mailto:ant-user-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:ant-user-help@jakarta.apache.org>
>
--
To unsubscribe, e-mail: <mailto:ant-user-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-user-help@jakarta.apache.org>
|