How could I generate a customized javadoc of a class, package ... to pdf in eclipse or something in maven? -
how generate customized javadoc of class, package ... pdf in eclipse or in maven?
<plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-javadoc-plugin</artifactid> <version>2.10.2</version> <reportsets> <reportset> <id>pdf</id> <reports> <report>javadoc</report> </reports> <configuration> <name>pdf</name> <description>this documentation on pdf.</description> <destdir>pdf</destdir> <doclet>com.tarsec.javadoc.pdfdoclet.pdfdoclet</doclet> <docletpath>${basedir}\..\..\tools\pdfdoclet-1.0.3-all.jar</docletpath> <usestandarddocletoptions>false</usestandarddocletoptions> <additionalparam> -pdf javadoc.pdf </additionalparam> </configuration> </reportset> </reportsets> </plugin>
i tried many way use maven-pdf-plugin , pdfdoclet... unsuccessfully or did wrong way? u give me advises? or guides, tutorial?...
thanks in advance
Comments
Post a Comment