--- Sunil Naik <[EMAIL PROTECTED]> wrote: > Whenever I run the javac task in ant it only shows the number of files > being compiled.Is there any way I can know the names of the files being > compiled?
If you haven't already, pick up Ant1.5Beta1, and include: listfiles="yes" (or "true" or "on") in your <javac> task. > Same for the copy task.Here too only the number of files being copied is > being echoed on the console.Is there any way to know the names of the > files being copied? Include (the undocumented attribute -- oops!): verbose="yes" (or "true" or "on") in your <copy> task. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
