maven-plugins/idea/xdocs/properties.xml
aheritier 7cfd9049c7 Move all plugins sites to maven-1.X/plugins
Fix breadcrumbs
Add goals to create and/or deploy all sites


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@382568 13f79535-47bb-0310-9956-ffa450edef68
2006-03-02 23:49:59 +00:00

112 lines
3.8 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
/*
* 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>IDEA Properties</title>
<author email="kschrader@karmalab.org">Kurt Schrader</author>
<author email="evenisse@ifrance.com">Emmanuel Venisse</author>
<author email="michal.amzcka@dimatics.com">Michal Maczka</author>
</properties>
<body>
<section name="Maven IDEA Plugin Settings">
<table>
<tr>
<th>Property name</th>
<th>Optional?</th>
<th>Description</th>
</tr>
<tr>
<td>maven.idea.project.version</td>
<td>Yes</td>
<td>
The IDEA version to generate project files. Valid values are 3 or 4. IDEA 4 is the default.
</td>
</tr>
<tr>
<td>maven.cvs.client.exe</td>
<td>Yes</td>
<td>
Specifies the cvs path. (IDEA 3 only)
</td>
</tr>
<tr>
<td>maven.idea.project.multiproject.includes</td>
<td>Yes</td>
<td>
This is the list of file specifications to be
included when searching for projects to be processed
by the plugin.
<br/>
Default value is ${maven.multiproject.includes}
(see <a href="http://maven.apache.org/maven-1.x/plugins/multiproject/properties.html">multiproject</a>)
It means that mutiproject setup is used when no value is provided.
</td>
</tr>
<tr>
<td>maven.idea.project.multiproject.excludes</td>
<td>Yes</td>
<td>
This is the list of file specifications to be excluded
when <b>idea:multiproject</b> goal is executed
<br/>
Default value is ${maven.multiproject.excludes}
</td>
</tr>
<tr>
<td>maven.idea.project.multiproject.basedir</td>
<td>Yes</td>
<td>
This is the base directory that the plugin will use for <b>idea:multiproject</b> goal is executed
<br/>
Default value is ${maven.multiproject.basedir}
</td>
</tr>
<tr>
<td>maven.idea.generated.source</td>
<td>Yes</td>
<td>
Comma separated list of directories under target containing generated source to be included in the idea module. Common examples would be xmlbeans or xdoclet generated code.
</td>
</tr>
<tr>
<td>maven.idea.target.exclude</td>
<td>Yes</td>
<td>
Flag to control exclusion of the target directory from the idea
project. This can give a speed up for large projects and avoids
finding duplicate resources when using "Go to file...".
<br/>
Default value is true.
</td>
</tr>
<tr>
<td>maven.idea.jdk</td>
<td>Yes</td>
<td>
The target JDK module name. <code>java version "${java.version}"</code> is the default. (IDEA 4 only)
</td>
</tr>
</table>
</section>
</body>
</document>