Hi,
I like to know how to exclude packages while creating javadocs.
I included the following plugin in the pom with "excludepackaegenames"
option.
Looks like it is not excluding the packages. Is there something wrong in my
configuration or do I miss something.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.0-beta-3</version>
<configuration>
<excludepackagenames>
com.xyz.util.ddm.cache.xmlconfig.*
</excludepackagenames>
</configuration>
</plugin>
I ran mvn javadoc:javadoc command
Thanks in advance,
Venkat M