Geoffrey De Smet wrote:
How do I generate the sites without the reports?
That way I can quickly check if my APT/FML files render properly.

The m2 book doesn't mention this in 3.12 btw.

In the reporting section of your pom.xml, put an empty reportSets element in the maven-project-info-reports-plugin plugin like:

       <reporting>
          ...
           <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
                 <reportSets>
                    <reportSet>
                       <reports/>
                    </reportSet>
                 </reportSets>
             </plugin>
           </plugins>
          ...
       <reporting>


Maybe reportSets itself can be an empty element, or reportSet.
See http://maven.apache.org/plugins/maven-project-info-reports-plugin/howto.html.

This way you don't get a "project info" part in your site.

--
Matthijs Wensveen
Func. Internet Integration
W http://www.func.nl
T +31 30 2109750
F +31 30 2109751


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

Reply via email to