uml - Maven/Netbean project -
i've tried maven plugin generate class diagram. however, tool generate particular class's diagram. wonder if there tool out there generate overview class diagram based on source code have?
<plugin> <artifactid>maven-javadoc-plugin</artifactid> <version>2.9</version> <configuration> <aggregate>true</aggregate> <show>private</show> <doclet>org.umlgraph.doclet.umlgraphdoc</doclet> <docletartifact> <groupid>org.umlgraph</groupid> <artifactid>umlgraph</artifactid> <version>5.6</version> </docletartifact> <additionalparam> -views -all -inferrel -collpackages java.util.* -inferdep -nodefontsize 9 </additionalparam> <usestandarddocletoptions>true</usestandarddocletoptions> </configuration> </plugin>
Comments
Post a Comment