> From: Michael Saunders [mailto:[EMAIL PROTECTED]
>
> With regard to including files for the javac taskdef to process what is
the difference
> between these two constructs: 
>
>     <javac srcdir="${src.dir}"
>            destdir="${build.classes}"
>            includes="**/*.java"/>
>and 
>     <javac srcdir="${src.dir}"
>            destdir="${build.classes}">
>       <include name="**/*.java"/>
>     </javac>

There is no difference. Some attributes like includes and excludes
may also be used as elements to keep the build file readable.
Not all tasks support this functionality yet.

  -Arnout
 

Reply via email to