AFAIK, building javadoc from maven is quite simple:
<!-- Javadoc aggregation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<aggregate>true</aggregate>
<minmemory>128m</minmemory>
<maxmemory>256m</maxmemory>
<links>
<link>
http://java.sun.com/j2se/1.5.0/docs/api/
</link>
</links>
</configuration>
</plugin>
BTW, The main felix POM already had a commented plugin definition for
javadoc ...
So, a simple 'mvn javadoc:javadoc' or 'mvn javadoc:jar' from the felix
parent POM can generate all the javadoc.
Is this what you need ?
Or do you need the full maven site generation ?
--Guillaume
Marcel Offermans wrote:
Actually, if somebody can configure maven to generate JavaDoc then we
can setup our continuous build server to generate documentation for
every build we do.
Greetings, Marcel
On Feb 8, 2008, at 18:18 , Richard S. Hall wrote:
Yep, I would agree that it would be nice to have this set up
automatically...I imagine that this is something that Maven can do.
-> richard
Guillaume Sauthier wrote:
Hi all
I was searching for the OBR javadoc recently and found none easily
on the net (the only javadoc I found was the one in the OBR RFC pdf,
which seems to be outdated: Resolver.deploy(<missing the
boolean:start parameter>)).
And I found that there was no javadoc available from the Felix web
site.
Is this possible to export the aggregated javadoc of all the Felix
projects on the site ?
Cheers
--Guillaume