Unfortunately this isn't an option that's built into Javadoc, so its going to be a little bit challenging to add this option to the Maven Javadoc plugin: http://java.sun.com/j2se/javadoc/faq/index.html#exclude
I'd recommend downloading the maven-javadoc-plugin code, tweaking it until it does what you need, and then contributing your changes back to the Maven project for inclusion in a future release of the plugin. Wayne On 12/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Thanks for the response Jorg. However, the multi-pattern option is not going to work for us as it implies we know the names of the packages enough only use 1 wildcard per package. This is not the case. I do not know what the names of the packages are at the time of writing the POM - this setting is going in our shared team level POM and will be used as the parent POM for many projects. Jörg Schaible <[EMAIL PROTECTED]> 12/12/2006 02:10 AM Please respond to "Maven Users List" <[email protected]> To "Maven Users List" <[email protected]> cc Subject RE: Excluding packages from javadoc plugin [EMAIL PROTECTED] wrote on Tuesday, December 12, 2006 1:30 AM: > Hi, > > I want to exclude classes in any package that matches this pattern: > *.impl.* > > In other words, any class in a subpackage (of any depth) of a package > called "impl" should not have JavaDocs generated. > > The docs seem to indicate that only 1 wildcard can be used > per package, > with the maven.javadoc.excludepackagenames property. > > Any ideas if this is true or how to get around it and achieve > my use case? Separate multiple patterns with a colon. - Jörg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ------------------------------------------------------- The information contained in this e-mail message may be proprietary, privileged, confidential or protected from disclosure. If you are not the intended recipient, any dissemination, distribution or copying is strictly prohibited. If you think that you have received this e-mail message in error, please e-mail the sender.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
