git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113577 13f79535-47bb-0310-9956-ffa450edef68
95 lines
3.0 KiB
XML
95 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<document>
|
|
<properties>
|
|
<title>Maven Multi-Project Plug-in Properties</title>
|
|
<author email="dion@apache.org">dIon Gillard</author>
|
|
</properties>
|
|
<body>
|
|
<section name="Maven Multi-Project Plug-in Settings">
|
|
<table>
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Optional?</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.multiproject.basedir</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
This is the base directory that the plugin will use when searching for
|
|
projects to be processed. It is also the 'current directory' for relative paths
|
|
</p>
|
|
<p>
|
|
Default value is <code>${basedir}</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.multiproject.excludes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
This is the list of file specifications to be excluded when searching for
|
|
projects to be processed by the plugin
|
|
</p>
|
|
<p>Default value is the empty string.</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.multiproject.ignoreFailures</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
Set this to true to allow the plugin to continue
|
|
when any project fails during processing.
|
|
</p>
|
|
<p>
|
|
Default value is <code>false</code>. That means that if a project fails,
|
|
other projects will not be processed.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.multiproject.includes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
This is the list of file specifications to be included when searching for
|
|
projects to be processed by the plugin
|
|
</p>
|
|
<p>
|
|
Default value is <code>*/project.xml</code>, that is all project.xml files one
|
|
directory below the base directory
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>maven.multiproject.type</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
This property should be set for
|
|
each subproject separately.
|
|
It allows to control the type of
|
|
artifact (deliverable) which will
|
|
be built, installed or deployed by the reactor.
|
|
<br/>
|
|
E.g. this property is set to <code>war</code>
|
|
when multiproject will build the project
|
|
it will try to create artifact to attain a goal:
|
|
<code>war:war</code>. If it is set to <code>ear</code>
|
|
the goal which will deliver an artifact will be
|
|
<code>ear:ear</code>
|
|
</p>
|
|
<p>
|
|
Default value is <code>jar</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document> |