mirror of https://github.com/apache/maven.git
regenerate project and settings descriptor
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169605 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b4bbf3071d
commit
e15ca2b246
File diff suppressed because it is too large
Load Diff
|
@ -1,221 +1,277 @@
|
|||
<?xml version="1.0"?>
|
||||
<document>
|
||||
<properties>
|
||||
<author email="dev@modello.codehaus.org">Maven Development Team</author>
|
||||
<title>Maven Model Documentation</title>
|
||||
<title>Settings</title>
|
||||
</properties>
|
||||
<body>
|
||||
<section name="Descriptor with links">
|
||||
<section name="Settings">
|
||||
<p>
|
||||
<source>
|
||||
<a href="#Settings"><settings></a>
|
||||
<a href="#jdks"><jdks></a>
|
||||
<a href="#Jdk"><jdk></a>
|
||||
<a href="#Jdk"><active/></a>
|
||||
<a href="#Jdk"><version/></a>
|
||||
<a href="#Jdk"><javaHome/></a>
|
||||
<a href="#Jdk"><jdk></a>
|
||||
<a href="#jdks"></jdks></a>
|
||||
<a href="#proxies"><proxies></a>
|
||||
<a href="#Proxy"><proxy></a>
|
||||
<a href="#Proxy"><active/></a>
|
||||
<a href="#Proxy"><protocol/></a>
|
||||
<a href="#Proxy"><username/></a>
|
||||
<a href="#Proxy"><password/></a>
|
||||
<a href="#Proxy"><port/></a>
|
||||
<a href="#Proxy"><host/></a>
|
||||
<a href="#Proxy"><nonProxyHosts/></a>
|
||||
<a href="#Proxy"><proxy></a>
|
||||
<a href="#proxies"></proxies></a>
|
||||
<a href="#servers"><servers></a>
|
||||
<a href="#Server"><server></a>
|
||||
<a href="#Server"><id/></a>
|
||||
<a href="#Server"><username/></a>
|
||||
<a href="#Server"><password/></a>
|
||||
<a href="#Server"><privateKey/></a>
|
||||
<a href="#Server"><passphrase/></a>
|
||||
<a href="#Server"><server></a>
|
||||
<a href="#servers"></servers></a>
|
||||
<a href="#profiles"><profiles></a>
|
||||
<a href="#Profile"><profile></a>
|
||||
<a href="#Profile"><active/></a>
|
||||
<a href="#Profile"><localRepository/></a>
|
||||
<a href="#Profile"><passwordStore/></a>
|
||||
<a href="#Profile"><profile></a>
|
||||
<a href="#profiles"></profiles></a>
|
||||
<a href="#Settings"><settings></a></source>
|
||||
</p>
|
||||
<section name="Settings">
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jdks</td>
|
||||
<td>
|
||||
Configuration for different java environment profiles. One good use
|
||||
for this might be to configure both JDK 1.4 and JDK 1.5 to work with
|
||||
maven. Profiles will allow switching of entire java environments
|
||||
based on the profile id, either in the defaults section below, or on
|
||||
the command line.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>proxies</td>
|
||||
<td>
|
||||
User-specific configuration for maven. Includes things that should not
|
||||
be distributed with the pom.xml file, such as developer identity, along with
|
||||
local settings, like proxy information.</p>
|
||||
<source>
|
||||
<<a href="#class_Settings">settings</a>>
|
||||
<proxies>
|
||||
<<a href="#class_Proxy">proxy</a>>
|
||||
<active/>
|
||||
<protocol/>
|
||||
<username/>
|
||||
<password/>
|
||||
<port/>
|
||||
<host/>
|
||||
<nonProxyHosts/>
|
||||
</proxy>
|
||||
</proxies>
|
||||
<servers>
|
||||
<<a href="#class_Server">server</a>>
|
||||
<id/>
|
||||
<username/>
|
||||
<password/>
|
||||
<privateKey/>
|
||||
<passphrase/>
|
||||
</server>
|
||||
</servers>
|
||||
<mirrors>
|
||||
<<a href="#class_Mirror">mirror</a>>
|
||||
<id/>
|
||||
<mirrorOf/>
|
||||
<name/>
|
||||
<url/>
|
||||
</mirror>
|
||||
</mirrors>
|
||||
<profiles>
|
||||
<<a href="#class_Profile">profile</a>>
|
||||
<active/>
|
||||
<localRepository/>
|
||||
<offline/>
|
||||
</profile>
|
||||
</profiles>
|
||||
</settings>
|
||||
</source>
|
||||
<a name="class_Settings"/>
|
||||
<subsection name="settings">
|
||||
<p>Root element of the user configuration file.</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>proxies</code>
|
||||
</td>
|
||||
<td>
|
||||
Configuration for different proxy profiles. Multiple proxy profiles
|
||||
might come in handy for anyone working from a notebook or other
|
||||
mobile platform, to enable easy switching of entire proxy
|
||||
configurations by simply specifying the profile id, again either from
|
||||
the command line or from the defaults section below.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>servers</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>servers</code>
|
||||
</td>
|
||||
<td>
|
||||
Configuration of server-specific settings, mainly authentication
|
||||
method. This allows configuration of authentication on a per-server
|
||||
basis.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>profiles</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>mirrors</code>
|
||||
</td>
|
||||
<td>
|
||||
Configuration of download mirrors for repositories.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>profiles</code>
|
||||
</td>
|
||||
<td>
|
||||
Configuration for different runtime profiles for maven itself. For
|
||||
example, this will allow plugin developers to switch from a "work"
|
||||
local repository to a "testing" local repository. It may also allow
|
||||
configuration of such things as password keystore, etc. Once again,
|
||||
the active profile will be switchable via either the defaults section
|
||||
or the command line (read: system properties).
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
</section>
|
||||
<section name="Jdk">
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>active</td>
|
||||
<td>Whether this JDK is the active one.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>version</td>
|
||||
<td>The JDK major version (eg. '1.4').</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>javaHome</td>
|
||||
<td>The JDK home.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
</section>
|
||||
<section name="Proxy">
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>active</td>
|
||||
<td>Whether this proxy configuration is the active one.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>protocol</td>
|
||||
<td>The proxy protocol.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>username</td>
|
||||
<td>The proxy user.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>password</td>
|
||||
<td>The proxy password.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>port</td>
|
||||
<td>The proxy port.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>host</td>
|
||||
<td>The proxy host.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>nonProxyHosts</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</subsection>
|
||||
<a name="class_Proxy"/>
|
||||
<subsection name="proxy">
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>active</code>
|
||||
</td>
|
||||
<td>Whether this proxy configuration is the active one.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>protocol</code>
|
||||
</td>
|
||||
<td>The proxy protocol.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>username</code>
|
||||
</td>
|
||||
<td>The proxy user.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>password</code>
|
||||
</td>
|
||||
<td>The proxy password.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>port</code>
|
||||
</td>
|
||||
<td>The proxy port.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>host</code>
|
||||
</td>
|
||||
<td>The proxy host.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>nonProxyHosts</code>
|
||||
</td>
|
||||
<td>
|
||||
The list of non-proxied hosts (usually
|
||||
comma-delimited).
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
</section>
|
||||
<section name="Server">
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>id</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</subsection>
|
||||
<a name="class_Server"/>
|
||||
<subsection name="server">
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>id</code>
|
||||
</td>
|
||||
<td>
|
||||
The ID of this configuration for indicating the default or "active"
|
||||
profile.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>username</td>
|
||||
<td>The username used to authenticate.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>password</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>username</code>
|
||||
</td>
|
||||
<td>The username used to authenticate.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>password</code>
|
||||
</td>
|
||||
<td>
|
||||
The password used in conjunction with the username to authenticate.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>privateKey</td>
|
||||
<td>The private key location used to authenticate.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>passphrase</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>privateKey</code>
|
||||
</td>
|
||||
<td>The private key location used to authenticate.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>passphrase</code>
|
||||
</td>
|
||||
<td>
|
||||
The passphrase used in conjunction with the privateKey to authenticate.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
</section>
|
||||
<section name="Profile">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</subsection>
|
||||
<a name="class_Mirror"/>
|
||||
<subsection name="mirror">
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>active</td>
|
||||
<td>Whether this is the active maven profile.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>localRepository</td>
|
||||
<td>The local repository.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>passwordStore</td>
|
||||
<td>The keystore used to store passwords.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
</section>
|
||||
A download mirror for a given repository.
|
||||
</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>id</code>
|
||||
</td>
|
||||
<td>
|
||||
The server ID of this mirror. This must -not- be the same as that of the repository you are mirroring.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>mirrorOf</code>
|
||||
</td>
|
||||
<td>
|
||||
The server ID of the repository being mirrored, eg "central".
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>name</code>
|
||||
</td>
|
||||
<td>
|
||||
The optional name that describes the mirror.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>url</code>
|
||||
</td>
|
||||
<td>
|
||||
The URL of the mirror repository.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</subsection>
|
||||
<a name="class_Profile"/>
|
||||
<subsection name="profile">
|
||||
<table>
|
||||
<tr>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>active</code>
|
||||
</td>
|
||||
<td>Whether this is the active maven profile.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>localRepository</code>
|
||||
</td>
|
||||
<td>The local repository.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<code>offline</code>
|
||||
</td>
|
||||
<td>Indicate whether maven should operate in offline mode full-time.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</subsection>
|
||||
</section>
|
||||
</body>
|
||||
</document>
|
Loading…
Reference in New Issue