You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ws...@apache.org on 2007/10/14 20:51:40 UTC

svn commit: r584577 - /maven/archiva/trunk/pom.xml

Author: wsmoak
Date: Sun Oct 14 11:51:40 2007
New Revision: 584577

URL: http://svn.apache.org/viewvc?rev=584577&view=rev
Log:
Configure the UMLGraph doclet to generate UML diagrams at the package and class level.  This makes Graphviz a prerequisite for generating the javadoc.

Modified:
    maven/archiva/trunk/pom.xml

Modified: maven/archiva/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/archiva/trunk/pom.xml?rev=584577&r1=584576&r2=584577&view=diff
==============================================================================
--- maven/archiva/trunk/pom.xml (original)
+++ maven/archiva/trunk/pom.xml Sun Oct 14 11:51:40 2007
@@ -722,6 +722,18 @@
         <configuration>
           <source>1.5</source>
           <aggregate>true</aggregate>
+          <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+          <docletArtifact>
+            <groupId>gr.spinellis</groupId>
+            <artifactId>UmlGraph</artifactId>
+            <version>4.6</version>
+          </docletArtifact>
+          <additionalparam>
+            -inferrel -inferdep -quiet -hide java.*
+            -collpackages java.util.* -qualify
+            -postfixpackage -nodefontsize 9
+            -nodefontpackagesize 7
+          </additionalparam>
         </configuration>
       </plugin>
       <plugin>