maven-plugins/plugin/xdocs/properties.xml
2005-09-27 21:58:53 +00:00

100 lines
3.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2001-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.
*/
-->
<document>
<properties>
<title>Maven Plugin Plugin Properties</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<section name="Maven Plugin Plugin Settings">
<table>
<tr>
<th>Property</th>
<th>Optional?</th>
<th>Description</th>
</tr>
<tr>
<td>maven.plugin.test.dir</td>
<td>Yes</td>
<td>
The directory that contains the project descriptor for
running the plugin tests. This should be relative to
<code>${basedir}</code>.
Default is <code>src/plugin-test</code>.
</td>
</tr>
<tr>
<td>maven.docs.src</td>
<td>Yes</td>
<td>
Default is <code>${basedir}/xdocs</code>.
</td>
</tr>
<tr>
<td><code>maven.plugin.dir</code></td>
<td>Yes</td>
<td>
Where Maven can find it's plugins.
Default is <code>${maven.home}/plugins</code>.
</td>
</tr>
<tr>
<td><code>maven.plugin.user.dir</code></td>
<td>Yes</td>
<td>
Where Maven can find plugins for this user only.
Default is <code>${maven.home.local}/plugins</code>.
</td>
</tr>
<tr>
<td><code>maven.plugin.unpacked.dir</code></td>
<td>Yes</td>
<td>
Where Maven expands installed plugins for processing.
Default is <code>${maven.home.local}/cache</code>.
</td>
</tr>
<tr>
<td><code>maven.repo.local</code></td>
<td>Yes</td>
<td>
The repository on the local machine Maven should use to store
downloaded artifacts (jars etc).
Default is <code>${maven.home.local}/repository</code>.
</td>
</tr>
<tr>
<td><code>maven.repo.remote</code></td>
<td>Yes</td>
<td>
The repository maven should use to download artifacts
(jars etc) that it can't find in the local repository.
You should set this to one of the
<a href="http://maven.apache.org/faq.html#ibiblio-mirrors">Ibiblio mirrors</a>.
You can also specify multiple repositories, separated by commas.
Default is <code>http://www.ibiblio.org/maven</code>.
</td>
</tr>
</table>
</section>
</body>
</document>