You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by monk <j2...@flashmail.com> on 2003/05/20 23:08:01 UTC

Javadoc task cannot exclude directory

How do I get the javadoc task to recursively exclude
all directories with a given pattern? like *test*?

I have tried patternset, fileset and several other options
but nothing works.

I want it to exclude every directory recursively with the
*test* pattern starting in my src/ directory.

A complete (working) ant task would be most helpful.

thanks

m


RE: Javadoc task cannot exclude directory

Posted by "W. Sean Hennessy" <sh...@goldenhourdata.com>.
the trailing * in the excludes="**/test*" pattern might be too lenient for
directory use,

example exclude used for all the CVS dirs downstream for the <zip> task.
<zipfileset dir="${dev.dir}/4.bin" excludes="**/CVS" includes="**/*.xml" />


-----Original Message-----
From: monk [mailto:j2ee@flashmail.com]
Sent: Tuesday, May 20, 2003 2:08 PM
To: user@ant.apache.org
Subject: Javadoc task cannot exclude directory


How do I get the javadoc task to recursively exclude
all directories with a given pattern? like *test*?

I have tried patternset, fileset and several other options
but nothing works.

I want it to exclude every directory recursively with the
*test* pattern starting in my src/ directory.

A complete (working) ant task would be most helpful.

thanks

m


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org