You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by oc...@apache.org on 2006/08/01 09:37:56 UTC

svn commit: r427478 - in /maven/plugins/trunk/maven-javadoc-plugin/src/site: apt/examples/alternate-doclet.apt site.xml

Author: oching
Date: Tue Aug  1 00:37:56 2006
New Revision: 427478

URL: http://svn.apache.org/viewvc?rev=427478&view=rev
Log:
Updated site.xml and alternate-doclet.apt

Modified:
    maven/plugins/trunk/maven-javadoc-plugin/src/site/apt/examples/alternate-doclet.apt
    maven/plugins/trunk/maven-javadoc-plugin/src/site/site.xml

Modified: maven/plugins/trunk/maven-javadoc-plugin/src/site/apt/examples/alternate-doclet.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/site/apt/examples/alternate-doclet.apt?rev=427478&r1=427477&r2=427478&view=diff
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/site/apt/examples/alternate-doclet.apt (original)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/site/apt/examples/alternate-doclet.apt Tue Aug  1 00:37:56 2006
@@ -21,34 +21,16 @@
          <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>
-                     <docletArtifact>
-                        <groupId>umlgraph</groupId>
-                        <artifactId>UMLGraph</artifactId>
-                        <version>4.2-SNAPSHOT</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>
+            <configuration>
+              <doclet>gr.spinellis.umlgraph.doclet.UmlGraph</doclet>
+              <docletArtifact>
+                <groupId>umlgraph</groupId>
+                <artifactId>UMLGraph</artifactId>
+                <version>4.4</version>
+              </docletArtifact>
+              <additionalparam>-views</additionalparam>
+              <destDir>target/uml</destDir>
+            </configuration>
          </plugin>
          ...
       </plugins>
@@ -57,5 +39,5 @@
 </project>
 +-----+
 
- The first \<reportSet\> element with uml as id specifies that the a UML graph (.dot file) will be generated and the second
- \<reportSet\> element with html as its id specifies that the javadocs report should be generated.
\ No newline at end of file
+ After executing <<<mvn site>>>, you will see that a UML graph (.dot file) will be generated in the specified <<<destDir>>>
+ value.
\ No newline at end of file

Modified: maven/plugins/trunk/maven-javadoc-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/site/site.xml?rev=427478&r1=427477&r2=427478&view=diff
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/site/site.xml Tue Aug  1 00:37:56 2006
@@ -35,8 +35,8 @@
 
     <menu name="Overview">
       <item name="Introduction" href="index.html"/>
-      <item name="Usage" href="usage.html"/>
-      <item name="Goals" href="plugin-info.html"/>      
+      <item name="Goals" href="plugin-info.html"/>
+      <item name="Usage" href="usage.html"/>                  
       <item name="FAQ" href="faq.html"/>
     </menu>
     <menu name="Examples">