Hi Jochen,
You can integrate javadoc into the site by putting this in your parent pom:
<project>
...
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<aggregate>true</aggregate>
</plugin>
</plugins>
</reporting>
</project>
The aggregate parameter specifies that all the generated javadocs of the
different modules will
be compiled into one javadoc report.
Thanks,
Odea
Jochen Wiedmann wrote:
Hi,
I have a project (Apache XML-RPC) with three subprojects (common,
client, server), each of which are building a jar file. The site is
created by the parent project.
Now I'd like to integrate the Javadoc's into the site. But how to do
that?
Regards,
Jochen
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]