Hi Glenn,
--- "Glenn R. Golden" <[EMAIL PROTECTED]> wrote:
> It appears that the javadoc plugin does not support the overview
> capability.
Actually it does support the overview capability. See below.
>
> By adding this line:
>
> overview="${maven.javadoc.overviewfile}">
>
>
> to the plugin.jelly at the end of the
>
> <ant:javadoc
This is unnecessary. If you search a little further down for "overview" within
plugin.jelly, you
should find the following:
<j:if test="${context.getVariable('maven.javadoc.overview') != null}">
<ant:setProperty name="overview" value="${maven.javadoc.overview}" />
</j:if>
>
> tag, and adding this to my ~/build.properties:
>
> maven.javadoc.overviewfile = src/java/overview.html
As shown above, the recognized variable is maven.javadoc.overview, not
maven.javadoc.overviewfile.
>
> it now does.
>
> I wonder if I'm missing some other existing way to include overview
> files in the javadocs, and if not, can this be added to the plugin?
Yes, you were missing something :-)
However, as I posted in a message just a couple of days ago, the javadocs do not
appear to be
generated correctly. Although the overview file is picked up correctly (and its
contents appear
within the generated javadocs), the package listing is missing. The packages are
neither
displayed within the usual summary table along with the overview contents, nor are
they listed in
the usual frame at the lower left (in the frames view).
Anyone having the same problem?
>
> Thanks.
>
> - Glenn
>
-- Chuck
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]