Skip to content

Commit 0aeb18a

Browse files
committed
use Doclava (aka Droiddoc) doclet to render AHC javadoc
1 parent 976795d commit 0aeb18a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,28 @@
472472
<link>http://java.sun.com/javase/6/docs/api/</link>
473473
</links>
474474
<excludePackageNames>${javadoc.package.exclude}</excludePackageNames>
475+
<bootclasspath>${sun.boot.class.path}</bootclasspath>
476+
<doclet>com.google.doclava.Doclava</doclet>
477+
<useStandardDocletOptions>false</useStandardDocletOptions>
478+
<additionalJOption>-J-Xmx1024m</additionalJOption>
479+
<docletArtifact>
480+
<groupId>com.google.doclava</groupId>
481+
<artifactId>doclava</artifactId>
482+
<version>1.0.3</version>
483+
</docletArtifact>
484+
<additionalparam>
485+
-hdf project.name "${project.name} ${project.version}"
486+
-d ${project.reporting.outputDirectory}/apidocs
487+
</additionalparam>
475488
</configuration>
489+
<reportSets>
490+
<reportSet>
491+
<id>default</id>
492+
<reports>
493+
<report>javadoc</report>
494+
</reports>
495+
</reportSet>
496+
</reportSets>
476497
</plugin>
477498
<plugin>
478499
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)