Author: dennisl Date: Mon Jul 17 16:30:11 2006 New Revision: 422915 URL: http://svn.apache.org/viewvc?rev=422915&view=rev Log: Follow the plugin documentation standard
Modified: maven/sandbox/plugins/maven-docck-plugin/pom.xml maven/sandbox/plugins/maven-docck-plugin/src/site/site.xml Modified: maven/sandbox/plugins/maven-docck-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-docck-plugin/pom.xml?rev=422915&r1=422914&r2=422915&view=diff ============================================================================== --- maven/sandbox/plugins/maven-docck-plugin/pom.xml (original) +++ maven/sandbox/plugins/maven-docck-plugin/pom.xml Mon Jul 17 16:30:11 2006 @@ -4,13 +4,26 @@ <parent> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugins</artifactId> - <version>1</version> + <version>2-SNAPSHOT</version> </parent> <artifactId>maven-docck-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0-SNAPSHOT</version> <name>Maven Documentation Checker Plugin</name> <url>http://maven.apache.org</url> + <prerequisites> + <maven>2.0</maven> + </prerequisites> + <!-- Not inherited correctly --> + <issueManagement> + <url>http://jira.codehaus.org/browse/MNG</url> + </issueManagement> + <!-- Not inherited correctly because the plugin is in the sandbox --> + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/maven/sandbox/plugins/maven-docck-plugin/</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/sandbox/plugins/maven-docck-plugin/</developerConnection> + <url>http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-docck-plugin/</url> + </scm> <dependencies> <dependency> <groupId>commons-httpclient</groupId> Modified: maven/sandbox/plugins/maven-docck-plugin/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-docck-plugin/src/site/site.xml?rev=422915&r1=422914&r2=422915&view=diff ============================================================================== --- maven/sandbox/plugins/maven-docck-plugin/src/site/site.xml (original) +++ maven/sandbox/plugins/maven-docck-plugin/src/site/site.xml Mon Jul 17 16:30:11 2006 @@ -1,3 +1,23 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> + +<!-- +/* + * Copyright 2006 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> + <project name="Maven DOCCK plugin"> <bannerLeft> <name>Maven DOCCK plugin</name> @@ -12,12 +32,15 @@ <item name="Maven 2" href="http://maven.apache.org/maven2/"/> </links> - <menu name="Maven DOCCK Quickstart"> - <item name="How to Use" href="usage.html"/> + <menu name="Overview"> + <item name="Goals" href="plugin-info.html"/> + <item name="Usage" href="usage.html"/> </menu> + <menu name="Examples"> <item name="Sending output to a file" href="examples/file-output.html" /> </menu> + ${reports} </body> </project>