You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Chris Berry <ch...@gmail.com> on 2005/08/24 16:39:45 UTC

[m2] javadocs??

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: [m2] javadocs??

Posted by Edwin Punzalan <ep...@exist.com>.
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: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>
>
>  
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org