http://maven.apache.org/SETTINGS/1.0.0
complexType Settings

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://maven.apache.org/SETTINGS/1.0.0}Settings (restriction)

Documentation
1.0.0
        Root element of the user configuration file.
      
Properties
This component is not nillable.

Model
<...>
(localRepository? ; interactiveMode? ; usePluginRegistry? ; offline? ; proxies ; servers ; mirrors ; profiles ; activeProfiles ; pluginGroups)
</...>


Nested Element Summary
 activeProfiles
          1.0.0 List of manually-activated build profiles, specified in the order in which they should be applied.  
xs:booleaninteractiveMode
          1.0.0 Whether Maven should attempt to interact with the user for input.  
xs:stringlocalRepository
          1.0.0 The local repository.  
 mirrors
          1.0.0 Configuration of download mirrors for repositories.  
xs:booleanoffline
          1.0.0 Indicate whether maven should operate in offline mode full-time.  
 pluginGroups
          1.0.0 List of groupIds to search for a plugin when that plugin groupId is not explicitly provided.  
 profiles
          1.0.0 Configuration of build profiles for adjusting the build according to environmental parameters.  
 proxies
          1.0.0 Configuration for different proxy profiles. 
 servers
          1.0.0 Configuration of server-specific settings, mainly authentication method. 
xs:booleanusePluginRegistry
          1.0.0 Whether Maven should use the plugin-registry.xml file to manage plugin versions.  
Source
<xs:complexType name="Settings">
<xs:all>
<xs:element minOccurs="0" name="localRepository" type="xs:string">
</xs:element>
<xs:element default="true" minOccurs="0" name="interactiveMode" type="xs:boolean">
</xs:element>
<xs:element default="false" minOccurs="0" name="usePluginRegistry" type="xs:boolean">
</xs:element>
<xs:element default="false" minOccurs="0" name="offline" type="xs:boolean">
</xs:element>
<xs:element minOccurs="0" name="proxies">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="proxy" type="Proxy"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="servers">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="server" type="Server"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="mirrors">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="mirror" type="Mirror"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="profiles">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="profile" type="Profile"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="activeProfiles">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="activeProfile" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="pluginGroups">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="pluginGroup" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:all>
</xs:complexType>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.