exclude not excluding
I'm trying to exclude certain source files from having javadoc run against them. A common naming convention of those I want to exclude are that the class begins with an underscore (a "_"). Also, those that start with the capital letters "EJS". Here's how I have tried excluding them:
<packageset dir="${root}/Work_Flow/WorkflowBVT/appClientModule">
<include name="**"/>
<exclude name="**/_*.java"/>
<exclude name="**/EJS*.*"/>
</packageset>
However, I still see the docs for those source files I want to exclude. What am I doing wrong?

