You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by si...@apache.org on 2012/01/11 17:43:22 UTC

svn commit: r1230136 - /incubator/amber/trunk/pom.xml

Author: simonetripodi
Date: Wed Jan 11 16:43:22 2012
New Revision: 1230136

URL: http://svn.apache.org/viewvc?rev=1230136&view=rev
Log:
added Google Doclava as Javadoc Doclet

Modified:
    incubator/amber/trunk/pom.xml

Modified: incubator/amber/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/pom.xml?rev=1230136&r1=1230135&r2=1230136&view=diff
==============================================================================
--- incubator/amber/trunk/pom.xml (original)
+++ incubator/amber/trunk/pom.xml Wed Jan 11 16:43:22 2012
@@ -500,6 +500,30 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <bootclasspath>${sun.boot.class.path}</bootclasspath>
+          <doclet>com.google.doclava.Doclava</doclet>
+          <useStandardDocletOptions>false</useStandardDocletOptions>
+          <additionalJOption>-J-Xmx1024m</additionalJOption>
+          <docletArtifact>
+            <groupId>com.google.doclava</groupId>
+            <artifactId>doclava</artifactId>
+            <version>1.0.3</version>
+          </docletArtifact>
+          <additionalparam>
+            -hdf project.name "${project.name}"
+            -d ${project.reporting.outputDirectory}/apidocs
+            -bottom 'Copyright &#169; {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.'
+          </additionalparam>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <id>default</id>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
       </plugin>
 
       <plugin>