$ svn checkout http://svn.apache.org/repos/asf/maven/plugins/trunk/ plugins $ cd plugins/maven-javadoc-plugin $ mvn install
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.wsmoak</groupId>
<artifactId>umlgraph-example</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>UMLGraph Example</name>
<url>http://wsmoak.net</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>uml</id>
<configuration>
<doclet>gr.spinellis.umlgraph.doclet.UmlGraph</doclet>
<docletPath>/path/to/UMLGraph.jar</docletPath-->
<docletArtifact>
<groupId>umlgraph</groupId>
<artifactId>UMLGraph</artifactId>
<version>4.3</version>
</docletArtifact>
<additionalparam>-views</additionalparam>
<destDir>target/uml</destDir>
<show>private</show>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
<reportSet>
<id>html</id>
<configuration>
<show>private</show>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclet>gr.spinellis.umlgraph.doclet.UmlGraph</doclet>
<!--docletPath>/path/to/UmlGraph.jar</docletPath-->
<docletArtifact>
<groupId>umlgraph</groupId>
<artifactId>UMLGraph</artifactId>
<version>4.3</version>
</docletArtifact>
<additionalparam>-views</additionalparam>
<destDir>target/uml</destDir>
<show>private</show>
</configuration>
</plugin>
</plugins>
</build>
~/projects/java/umlgraph-example $ mvn javadoc:javadoc ... $ ll target/uml total 12 drwxrwxrwx+ 5 wsmoak None 0 Jan 15 06:32 . drwxrwxrwx+ 3 wsmoak None 0 Jan 15 06:32 .. -rwxrwxrwx 1 wsmoak None 2588 Jan 15 06:32 DetailedView.dot -rwxrwxrwx 1 wsmoak None 2501 Jan 15 06:32 Overview.dot drwxrwxrwx+ 2 wsmoak None 0 Jan 15 06:32 apidocs drwxrwxrwx+ 2 wsmoak None 0 Jan 15 06:32 css drwxrwxrwx+ 3 wsmoak None 0 Jan 15 06:32 images -rwxrwxrwx 1 wsmoak None 1530 Jan 15 06:32 stylesheet.css
~/projects/java/umlgraph-example $ mvn site ... $ ll target/site/apidocs total 12 drwxrwxrwx+ 2 wsmoak None 0 Jan 15 06:47 . drwxrwxrwx+ 5 wsmoak None 0 Jan 15 06:47 .. -rwxrwxrwx 1 wsmoak None 2588 Jan 15 06:47 DetailedView.dot -rwxrwxrwx 1 wsmoak None 2501 Jan 15 06:47 Overview.dot -rwxrwxrwx 1 wsmoak None 1530 Jan 15 06:47 stylesheet.css
(Note: When running from <reporting>, the <destDir> is ignored, and only the single stylesheet is copied in, not the 'css' and 'images' directories.)