Author: vmassol Date: Mon Jan 10 21:50:21 2005 New Revision: 124888 URL: http://svn.apache.org/viewcvs?view=rev&rev=124888 Log: Added FAQ for the dashboard plugin's website Added: maven/maven-1/plugins/trunk/dashboard/xdocs/faq.fml Modified: maven/maven-1/plugins/trunk/dashboard/project.xml maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml
Modified: maven/maven-1/plugins/trunk/dashboard/project.xml Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/project.xml?view=diff&rev=124888&p1=maven/maven-1/plugins/trunk/dashboard/project.xml&r1=124887&p2=maven/maven-1/plugins/trunk/dashboard/project.xml&r2=124888 ============================================================================== --- maven/maven-1/plugins/trunk/dashboard/project.xml (original) +++ maven/maven-1/plugins/trunk/dashboard/project.xml Mon Jan 10 21:50:21 2005 @@ -23,7 +23,7 @@ <pomVersion>3</pomVersion> <id>maven-dashboard-plugin</id> <name>Maven Dashboard Plugin</name> - <currentVersion>1.6</currentVersion> + <currentVersion>1.7-SNAPSHOT</currentVersion> <description>Generate a dashboard containing global statistics about other maven reports</description> <shortDescription>Generate a statistic dashboard</shortDescription> <url>http://maven.apache.org/reference/plugins/dashboard/</url> Modified: maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml?view=diff&rev=124888&p1=maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml&r1=124887&p2=maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml&r2=124888 ============================================================================== --- maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml (original) +++ maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml Mon Jan 10 21:50:21 2005 @@ -24,6 +24,11 @@ <author email="[EMAIL PROTECTED]">Vincent Massol</author> </properties> <body> + <release version="1.7-SNAPSHOT" date="in CVS"> + <action dev="vmassol" type="update"> + Added a FAQ on the website. + </action> + </release> <release version="1.6" date="2004-11-26"> <action dev="pkernevez" type="add" issue="MPDASHBOARD-16">Added Maven Change Log aggregators.</action> <action dev="pkernevez" type="add" issue="MPDASHBOARD-16">Added Maven Tasks List aggregators.</action> Added: maven/maven-1/plugins/trunk/dashboard/xdocs/faq.fml Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/faq.fml?view=auto&rev=124888 ============================================================================== --- (empty file) +++ maven/maven-1/plugins/trunk/dashboard/xdocs/faq.fml Mon Jan 10 21:50:21 2005 @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/* + * Copyright 2004 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. + */ + --> + +<faqs title="Frequently Asked Questions"> + + <part id="general"> + <title>General</title> + + <faq id="master-project-location"> + <question> + Why don't any data in the generated report? + </question> + <answer> + <p> + One of the possible reason is that your master project and its subprojects are not + located in the default location the dashboard plugin expects them. by default the + plugin expects the subprojects to be located one directory below the master project. + In other words, it is looking for subprojecs using the <code>*/project.xml</code> + pattern. + </p> + <p> + This can be controlled using the following properties (shown here with their default + values: + </p> +<source><![CDATA[ +maven.dashboard.basedir=${basedir} +maven.dashboard.includes=*/project.xml +maven.dashboard.excludes=**/target/**/project.xml]]></source> + </answer> + </faq> + + </part> +</faqs> Modified: maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml?view=diff&rev=124888&p1=maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml&r1=124887&p2=maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml&r2=124888 ============================================================================== --- maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml (original) +++ maven/maven-1/plugins/trunk/dashboard/xdocs/navigation.xml Mon Jan 10 21:50:21 2005 @@ -31,6 +31,7 @@ <item name="Properties" href="/properties.html"/> <item name="Aggregators" href="/aggregators.html"/> <item name="Authoring" href="/authoring.html"/> + <item name="FAQ" href="/faq.html"/> </menu> </body> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
