Man...

he want to do the following:

<target name="many javacs">
    <javac srcdir="..." destdir="..." debug="..."/>
    <javac srcdir="..." destdir="..." debug="..."/>
    <javac srcdir="..." destdir="..." debug="...""/>
</target>

Now, he wants to set the options for each of the javac tasks all at once.

----- Original Message ----- 
From: "Saurabh Agarwal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 11, 2001 2:11 PM
Subject: Re: Attributes for several tasks all at once?


> <target name="make-classes" >
>     <javac srcdir="${build_dir}\src"
>          destdir="${build_dir_classes}"
>          debug="on"
>          classpath="${classpath}"
>   >
>      </javac>
> </target>


Reply via email to