git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@124888 13f79535-47bb-0310-9956-ffa450edef68
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?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>
|