I'am trying to generate Javadocs using UmlGraphDoclet. Everything works fine
so far but no Graphics are generated at all. "apidocs"-Folder contains
".dot"-Files and ${packagename}.png file links are added to the package
overview HTML's. If I'am right I need a additional task to generate the png
using Graphviz but found nothing on the net.

Here my the javadoc settings from my pom.xml

<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-javadoc-plugin</artifactId>
 <configuration>
   <show>private</show>
   <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
   <docletArtifact>
     <groupId>gr.spinellis</groupId>
     <artifactId>UmlGraph</artifactId>
     <version>4.4</version>
   </docletArtifact>
 </configuration>
</plugin>


Please help. This is driving me crazy.

Best regards
Tobias

Reply via email to