Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written a new maven reporting plugin and it executes when the site is generated and produces and output html file.

How do i get the Project Reports section of the site to contain a link to it?

share|improve this question

1 Answer

up vote 0 down vote accepted

As a workaround you could manually re-define the project reports section in a custom site.xml:

    <!-- Inherit this menu for sub modules. -->
    <menu name="Module Documentation" inherit="top" >
        <item name="Overview" href="index.html" >
        </item>

        <item name="Information" href="project-info.html" >
            <item name="Dependencies" href="dependencies.html" />
            <item name="Project Plugins" href="plugins.html" />
            <item name="Project Summmary" href="project-summary.html" />
            ...
        </item>

        <item name="Reports" href="project-reports.html" >
            <item name="Checkstyle" href="checkstyle.html" />
            <item name="Your Report" href="your-report.html" />
            ...
        </item>
    </menu>

The drawbacks are:

  • You have to specify every single report.
  • You have to provide project-reports.html as well (e.g. via project-reports.apt) and you will lose the automaticly generated overview page with all reports.
  • If some modules do not contain all reports, you have to provide individual site.xml files for them to override the parent site.xml.

See Configuring the Site Descriptor in the documentation of the site plugin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.