How do I get the maven-javadoc-plugin to include the test classes as well as the runtime classes when generating Javadocs?
>From the maven-javadoc-plugin site (http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html), I can see that there's a sourcepath option, but I don't have any idea what the equivalent syntax in the pom.xml file would be. I tried '<sourcepath>src/main/java,src/test/java</sourcepath>', but that didn't work at all. In fact, it just failed silently and broke Javadoc generation completely. Any help would be appreciated. Thanks;
