Author: evenisse Date: Fri Apr 13 11:49:40 2007 New Revision: 528587 URL: http://svn.apache.org/viewvc?view=rev&rev=528587 Log: Add javadoc
Modified: maven/scm/trunk/maven-scm-site/src/site/site.xml maven/scm/trunk/pom.xml Modified: maven/scm/trunk/maven-scm-site/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-site/src/site/site.xml?view=diff&rev=528587&r1=528586&r2=528587 ============================================================================== --- maven/scm/trunk/maven-scm-site/src/site/site.xml (original) +++ maven/scm/trunk/maven-scm-site/src/site/site.xml Fri Apr 13 11:49:40 2007 @@ -45,6 +45,7 @@ <menu name="Quick Links"> <item name="Home" href="/index.html"/> <item name="Maven SCM Plugin" href="/plugins/index.html"/> + <item name="Javadoc" href="/projects/apidocs/index.html"/> <item name="SCM URL Format" href="/scm-url-format.html"/> <item name="Supported SCMs" href="/scms-overview.html" collapse="true"> <item name="Bazaar" href="/bazaar.html"/> Modified: maven/scm/trunk/pom.xml URL: http://svn.apache.org/viewvc/maven/scm/trunk/pom.xml?view=diff&rev=528587&r1=528586&r2=528587 ============================================================================== --- maven/scm/trunk/pom.xml (original) +++ maven/scm/trunk/pom.xml Fri Apr 13 11:49:40 2007 @@ -100,7 +100,53 @@ <distributionManagement> <site> <id>apache.website</id> - <url>scp://people.apache.org/www/maven.apache.org/scm</url> + <url>scp://people.apache.org/www/maven.apache.org/scm/projects/</url> </site> </distributionManagement> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>taglist-maven-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <links> + <link>http://java.sun.com/j2ee/1.4/docs/api</link> + <link>http://java.sun.com/j2se/1.5.0/docs/api</link> + <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link> + <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link> + <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link> + <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link> + <link>http://jakarta.apache.org/commons/logging/apidocs/</link> + <link>http://jakarta.apache.org/commons/pool/apidocs/</link> + <link>http://www.junit.org/junit/javadoc/</link> + <link>http://logging.apache.org/log4j/docs/api/</link> + <link>http://jakarta.apache.org/regexp/apidocs/</link> + <link>http://jakarta.apache.org/velocity/api/</link> + </links> + </configuration> + </plugin> + </plugins> + </reporting> </project>