-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Sebastian,

> I'm a new maven user. Is there a complete maven2 api documentation
> online available?

AFAIK no. You should download the Maven source code and build Maven by
yourself:

http://maven.apache.org/guides/development/guide-building-m2.html


> I wanted to download maven but the
> "maven-core" component (wich i assume i have to use) returns a 403
> forbidden while opening the folder:
> http://svn.apache.org/viewcvs.cgi/maven/components/trunk/maven-core/ .

Have you tried to download all Maven projects in one directory? Don't
know if that works, just an idea...

- -> svn co https://svn.apache.org/repos/asf/maven/trunks maven


> And just a matter of interest: Maven is capable of generating, very
> nice, complete javadocs and sourcecode for online usage but maven2
> itself uses none of these great features? Is there a reason behind this?
> Also the project reports seem not to be completly related to maven.

You have to specify the reports you want to use. Example from my pom.xml:

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.0-beta-4-SNAPSHOT</version>
        <configuration>
          <maxmemory>256m</maxmemory>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jxr-maven-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>surefire-report-maven-plugin</artifactId>
      </plugin>

      <!-- only possible with Maven 2.0.3 (unfortunately not yet -->
      <!-- available) -->
      <!--
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
      </plugin>
      -->

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
        <configuration>
          <tags>TODO, @todo, FIXME, HACK, @deprecated</tags>
        </configuration>
      </plugin>
    </plugins>
  </reporting>



HTH

Thorsten
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (MingW32)

iD8DBQFEFuO1QvObkgCcDe0RAjSfAJ0bBF3cZjZONeuAWzcTT49xGBwhmQCfViC5
NtoPoLkHE2GNWnVWx5nljbI=
=2C7o
-----END PGP SIGNATURE-----

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to