The Javadoc tool has a command-line option called "packagenames" which allows you to specify the package names you want to document. Does the maven javadoc plugin support this argument?
It seems that maven supports all the options as configuration properties, but packagenames is not an option, it's a command-line parameter and I can't see it listed on the maven javadoc plugin page.
The maven plugin does support the subpackages option, but this is different (it's recursive, whereas the packagenames argument is not).
How can I specify the packagenames argument with the Javadoc Maven plugin?