Hi,

When I use the javadoc plugin, the package description that is contained in package-info.java does not show up on the generated javadoc.
Am I doing something wrong?

I thought that maybe a doclet from an older JDK is being used, and tried to set the doclet explicitly:
<plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-javadoc-plugin</artifactId>
       <configuration>
          <doclet>com.sun.tools.doclets.standard.Standard</doclet>
<docletPath>C:\Programme\Java\jdk1.5.0_05\lib\tools.jar</docletPath>
       </configuration>
</plugin>

But that did not work either.

I converted package-info.java to package.html and then the package description did show up. Does that mean that only the older package.html approach is supported by the javadoc plugin? I would not want to have to revert to package.html.

Thanks
- Alexander

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to