Is there a way to use pattern matching to generate a list of directories for
path elements like sourcepath? For example, consider this [pseduo-code]
attempt to find subdirectories named "src":
<javadoc ...>
<sourcepath>
<fileset dir="${project.dir}" defaultexcludes="no">
<include name="**/src" />
<exclude name="**/*.?*" />
</fileset>
</sourcepath>
</javadoc>
I believe the <include.../> in this snippet is implicity converted to
"**/src/*", so it won't work. I've also tried "**/???", but that doesn't
work either.
--
John Lund, [EMAIL PROTECTED]