> It seem's that the only thing this flag is doing is to disable the html
> report exporting. All the other step for the report are done (Javadoc is
> still trying to instrument generated java code (which I don't really
> want!)
If you specify to add the modules in the menu via your site.xml file, you
also
have a reference of the child module (with a false link) that have no html
report.
So it's not very nice.
For the moment, I use a profile in order to filter the modules to take into
account
for the generation of the web site.
For instance :
<project>
[...]
<reporting>
</reporting>
<profiles>
<profile>
<id>site</id>
<modules>
<module>module1</module>
<module>module2</module>
</modules>
</profile>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
</modules>
</profile>
</profiles>
</project>
And I run
> mvn clean site -Psite
It works great but you have to not forget the profile (-Psite)
Rémy