I want to create javadocs through the maven site generation plugin, and I want automatic UML diagrams to be created and embedded in javadoc.
The statsvn project uses yDoc to create its UML documentation, but I think they use Maven1. yDoc is a commercial shareware product, so I'm not sure if the open source statsvn project integrates with it (or if there is a free version for javadoc generation).
Svnstat yDoc javadoc example:
ChurnPageMaker.java
svnstat includes ydoc as a plugin to generate a Maven1 report:
project.xml
<reports>
<report>maven-ydoc-plugin</report>
...
</reports>
yDoc documentation says that you can use the javadoc doclet Maven2 user approach (but I can't figure out where to download yDoc or if it's free). The statsvn project seems to be using yDoc, so I guess it's free?
Are there any other open source Javadoc doclet generators that integrate with Maven2 to generate javadocs with built-in class diagrams.
source
share