Re: How can I configure maven-javadoc-plugin to exclude generated sources?

2013-10-31 Thread Andrew Pennebaker
Ah, the various online tutorials for this failed to specify which XML element the plugin configuration should be nested under. This works for me: ... build plugins !-- Exclude javadocs for Thrift -- plugin groupIdorg.apache.maven.plugins/groupId

How can I configure maven-javadoc-plugin to exclude generated sources?

2013-10-31 Thread Andrew Pennebaker
I've tried adding thrift / gen-java namespaces and directories to excludes configuration for maven-javadoc-plugin, but when I run `mvn javadoc:javadoc`, it still attempts to create javadocs for my generated Thrift Java classes. Can someone provide a full pom.xml example for how to do this