If I want to be able to enabled/disable this from the command line, I 'll have to write a profile issupose?
Isn't there a goal like m1's "xdoc:generate"?

Matthijs Wensveen wrote:
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.


--
With kind regards,
Geoffrey De Smet


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

Reply via email to