There is a javadoc plugin in svn... here:
https://svn.codehaus.org/home/projects/mojo/scm/trunk/mojo
Checkout maven-javadoc-plugin and "m2 install" so you can use it. Most
of the plugins in there have not been officially released. And some are
even still in progress. Although I can guarantee that javadoc is
already usable. ;)
The list of plugins and their progress from m1 to m2 can be seen here:
http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix.
Also, you need to set it up for your site:site, though. So, your
pom.xml should have this:
.....
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
</plugin>
</plugins>
</reporting>
.......
Chris Berry wrote:
I suppose the javadocs for maven2 are somewhere on the site -- but I
cannot locate them. The old, familiar Project Reports is missing. And
I've trolled thru most pages looking. I also tried to run "m2
site:site" on my local SVN checkout (it died). So I'm at a loss...
Are there any javadocs available for m2??
Thanks,
-- Chris
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]