Want: my extra FAQs in maven-reports.html

In my root project.xml I register the faq plugin in the <reports>
Then in the root maven.xml:
  <preGoal name="xdoc:jelly-transform">
    <attainGoal name="faq"/>
  </preGoal>

as instructed.

Now in attempt to add several other FAQs for my project members, I tried
this in the same preGoal

  <preGoal name="xdoc:jelly-transform">
    <attainGoal name="faq"/>
    <j:set var="maven.faq.src.file" value="${maven.faqs.src}/cvs-faq.fml"/>
    <j:set var="maven.faq.dest.file" value="${maven.gen.docs}/cvs-faq.xml"/>
    <attainGoal name="faq"/>

    <j:set var="maven.faq.src.file"
value="${maven.faqs.src}/project-faq.fml"/>
    <j:set var="maven.faq.dest.file"
value="${maven.gen.docs}/project-faq.xml"/>
    <attainGoal name="faq"/>

  </preGoal>

Worked fine, but since we are never satisfied I wanted them all listed in
the "project reports".  I saw this in the faq-plugin

    <doc:registerReport
      name="FAQs"
      pluginName="faq"
      description="Frequently Asked Questions."
      link="faq"/>

so I did that for each extra FAQ right before the <attainGoal name="faq"/>.

This also did "most" of what I wanted.  in the navcolum under the
collapsable Project Reports I see all 3 of my faqs.

However it is not listed in the Maven Generated Reports table out in
maven-reports.html

Ok, how do I add things to that table?
---------------------------------------------------
"Some people say porosity implies permeability ..."
kevinHagel
http://hagelnx.com


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

Reply via email to