2005-03-08 01:06:22 -05:00
|
|
|
<model>
|
2005-03-16 01:29:35 -05:00
|
|
|
<id>settings</id>
|
|
|
|
<name>Settings</name>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
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.]]></description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<defaults>
|
|
|
|
<default>
|
|
|
|
<key>package</key>
|
2005-05-31 17:48:55 -04:00
|
|
|
<value>org.apache.maven.settings</value>
|
2005-03-08 01:06:22 -05:00
|
|
|
</default>
|
|
|
|
</defaults>
|
|
|
|
<classes>
|
2005-06-14 23:01:48 -04:00
|
|
|
<class>
|
|
|
|
<name>TrackableBase</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description>common base class that contains code to track the source for this instance (USER|GLOBAL)</description>
|
|
|
|
<codeSegments>
|
|
|
|
<codeSegment>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<code><![CDATA[
|
|
|
|
public static final String USER_LEVEL = "user-level";
|
|
|
|
public static final String GLOBAL_LEVEL = "global-level";
|
|
|
|
|
|
|
|
private String sourceLevel = USER_LEVEL;
|
|
|
|
private boolean sourceLevelSet = false;
|
|
|
|
|
|
|
|
public void setSourceLevel( String sourceLevel )
|
|
|
|
{
|
|
|
|
if ( sourceLevelSet )
|
|
|
|
{
|
|
|
|
throw new IllegalStateException( "Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel );
|
|
|
|
}
|
|
|
|
else if ( !( USER_LEVEL.equals( sourceLevel ) || GLOBAL_LEVEL.equals( sourceLevel ) ) )
|
|
|
|
{
|
|
|
|
throw new IllegalArgumentException( "sourceLevel must be one of: {" + USER_LEVEL + "," + GLOBAL_LEVEL + "}" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.sourceLevel = sourceLevel;
|
|
|
|
this.sourceLevelSet = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSourceLevel()
|
|
|
|
{
|
|
|
|
return sourceLevel;
|
|
|
|
}
|
|
|
|
]]></code>
|
|
|
|
</codeSegment>
|
|
|
|
</codeSegments>
|
|
|
|
</class>
|
|
|
|
<class>
|
|
|
|
<name>IdentifiableBase</name>
|
|
|
|
<superClass>TrackableBase</superClass>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
|
|
|
<default>default</default>
|
|
|
|
<required>true</required>
|
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
</class>
|
2005-03-16 01:29:35 -05:00
|
|
|
<class rootElement="true" xml.tagName="settings">
|
|
|
|
<name>Settings</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>TrackableBase</superClass>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description>Root element of the user configuration file.</description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<fields>
|
2005-05-31 12:24:34 -04:00
|
|
|
<field>
|
|
|
|
<name>localRepository</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>true</required>
|
|
|
|
<description><![CDATA[The local repository.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<!-- [JC] Not ready to use yet, so I'm making if unavailable for now. -->
|
|
|
|
<!-- field>
|
|
|
|
<name>passwordStore</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>false</required>
|
|
|
|
<description><![CDATA[The keystore used to store passwords.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field -->
|
|
|
|
<field>
|
|
|
|
<name>offline</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>false</required>
|
|
|
|
<description><![CDATA[Indicate whether maven should operate in offline mode full-time.]]>
|
|
|
|
</description>
|
|
|
|
<type>boolean</type>
|
|
|
|
<defaultValue>false</defaultValue>
|
|
|
|
</field>
|
2005-04-18 17:50:55 -04:00
|
|
|
<!-- [JC] Not ready to use yet, so I'm making if unavailable for now. -->
|
|
|
|
<!-- field>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>jdks</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
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.
|
|
|
|
]]></description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<association>
|
2005-03-16 01:29:35 -05:00
|
|
|
<type>Jdk</type>
|
2005-03-08 01:06:22 -05:00
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
2005-04-18 17:50:55 -04:00
|
|
|
</field -->
|
2005-03-09 17:13:07 -05:00
|
|
|
<field>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>proxies</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
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.
|
|
|
|
]]></description>
|
2005-03-09 17:13:07 -05:00
|
|
|
<association>
|
2005-03-16 01:29:35 -05:00
|
|
|
<type>Proxy</type>
|
2005-03-09 17:13:07 -05:00
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-03-08 01:06:22 -05:00
|
|
|
<field>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>servers</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
Configuration of server-specific settings, mainly authentication
|
|
|
|
method. This allows configuration of authentication on a per-server
|
|
|
|
basis.
|
|
|
|
]]></description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<association>
|
2005-03-16 01:29:35 -05:00
|
|
|
<type>Server</type>
|
2005-03-08 01:06:22 -05:00
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-05-05 02:24:07 -04:00
|
|
|
<field>
|
|
|
|
<name>mirrors</name>
|
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description> Configuration of download mirrors for repositories.
|
|
|
|
</description>
|
2005-05-05 02:24:07 -04:00
|
|
|
<association>
|
|
|
|
<type>Mirror</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-03-08 01:06:22 -05:00
|
|
|
<field>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>profiles</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
2005-05-31 12:24:34 -04:00
|
|
|
Configuration of build profiles for adjusting the build
|
|
|
|
according to environmental parameters
|
2005-03-10 20:52:18 -05:00
|
|
|
]]></description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<association>
|
2005-03-16 01:29:35 -05:00
|
|
|
<type>Profile</type>
|
2005-03-08 01:06:22 -05:00
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<field>
|
|
|
|
<name>activeProfiles</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
List of manually-activated build profiles, specified in the order in which
|
|
|
|
they should be applied.
|
|
|
|
]]></description>
|
|
|
|
<association>
|
|
|
|
<type>String</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-06-14 23:01:48 -04:00
|
|
|
<field>
|
|
|
|
<name>pluginUpdates</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description>Specified plugin update policy information.</description>
|
|
|
|
<association>
|
|
|
|
<type>PluginUpdate</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
2005-03-08 01:06:22 -05:00
|
|
|
</fields>
|
2005-04-18 17:50:55 -04:00
|
|
|
<codeSegments>
|
|
|
|
<codeSegment>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<code><![CDATA[
|
|
|
|
private Proxy activeProxy;
|
2005-06-13 17:56:00 -04:00
|
|
|
|
|
|
|
public void flushActiveProxy()
|
|
|
|
{
|
|
|
|
this.activeProxy = null;
|
|
|
|
}
|
2005-06-07 23:37:31 -04:00
|
|
|
|
2005-04-18 17:50:55 -04:00
|
|
|
public synchronized Proxy getActiveProxy()
|
|
|
|
{
|
|
|
|
if(activeProxy == null)
|
|
|
|
{
|
|
|
|
List proxies = getProxies();
|
|
|
|
if ( proxies != null && !proxies.isEmpty() )
|
|
|
|
{
|
|
|
|
if ( proxies.size() > 1 )
|
|
|
|
{
|
|
|
|
for ( Iterator it = proxies.iterator(); it.hasNext(); )
|
|
|
|
{
|
|
|
|
Proxy proxy = (Proxy) it.next();
|
|
|
|
if ( proxy.isActive() )
|
|
|
|
{
|
|
|
|
activeProxy = proxy;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If we only have one proxy, use it as the active one.
|
|
|
|
activeProxy = (Proxy) proxies.get( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return activeProxy;
|
|
|
|
}
|
2005-06-13 17:56:00 -04:00
|
|
|
|
2005-04-18 17:50:55 -04:00
|
|
|
public Server getServer( String serverId )
|
|
|
|
{
|
|
|
|
Server match = null;
|
|
|
|
|
|
|
|
List servers = getServers();
|
|
|
|
if ( servers != null && serverId != null )
|
|
|
|
{
|
|
|
|
for ( Iterator it = servers.iterator(); it.hasNext(); )
|
|
|
|
{
|
|
|
|
Server server = (Server) it.next();
|
|
|
|
if ( serverId.equals( server.getId() ) )
|
|
|
|
{
|
|
|
|
match = server;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-07 23:37:31 -04:00
|
|
|
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Mirror getMirrorOf( String repositoryId )
|
|
|
|
{
|
|
|
|
Mirror match = null;
|
|
|
|
|
|
|
|
List mirrors = getMirrors();
|
|
|
|
if ( mirrors != null && repositoryId != null )
|
|
|
|
{
|
|
|
|
for ( Iterator it = mirrors.iterator(); it.hasNext(); )
|
|
|
|
{
|
|
|
|
Mirror mirror = (Mirror) it.next();
|
|
|
|
if ( repositoryId.equals( mirror.getMirrorOf() ) )
|
|
|
|
{
|
|
|
|
match = mirror;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-04-18 17:50:55 -04:00
|
|
|
|
|
|
|
return match;
|
|
|
|
}
|
2005-06-14 23:01:48 -04:00
|
|
|
|
|
|
|
private Map activeProfileToSourceLevel = new HashMap();
|
|
|
|
|
|
|
|
public void setActiveProfileSourceLevel( String activeProfile, String sourceLevel )
|
|
|
|
{
|
|
|
|
activeProfileToSourceLevel.put( activeProfile, sourceLevel );
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSourceLevelForActiveProfile( String activeProfile )
|
|
|
|
{
|
|
|
|
String sourceLevel = (String) activeProfileToSourceLevel.get( activeProfile );
|
|
|
|
|
|
|
|
if ( sourceLevel != null )
|
|
|
|
{
|
|
|
|
return sourceLevel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return getSourceLevel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private String localRepositorySourceLevel = TrackableBase.USER_LEVEL;
|
|
|
|
|
|
|
|
public void setLocalRepositorySourceLevel( String localRepoSourceLevel )
|
|
|
|
{
|
|
|
|
this.localRepositorySourceLevel = localRepoSourceLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getLocalRepositorySourceLevel()
|
|
|
|
{
|
|
|
|
return localRepositorySourceLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
private Map pluginUpdatesByKey;
|
|
|
|
|
|
|
|
public Map getPluginUpdatesByKey()
|
|
|
|
{
|
|
|
|
if ( pluginUpdatesByKey == null )
|
|
|
|
{
|
|
|
|
pluginUpdatesByKey = new HashMap();
|
|
|
|
|
|
|
|
for ( Iterator it = getPluginUpdates().iterator(); it.hasNext(); )
|
|
|
|
{
|
|
|
|
PluginUpdate pluginUpdate = (PluginUpdate) it.next();
|
|
|
|
|
|
|
|
pluginUpdatesByKey.put( pluginUpdate.getKey(), pluginUpdate );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pluginUpdatesByKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void flushPluginUpdatesByKey()
|
|
|
|
{
|
|
|
|
this.pluginUpdatesByKey = null;
|
|
|
|
}
|
2005-04-18 17:50:55 -04:00
|
|
|
]]></code>
|
|
|
|
</codeSegment>
|
|
|
|
</codeSegments>
|
2005-03-08 01:06:22 -05:00
|
|
|
</class>
|
|
|
|
<!-- @todo: is any of this too CVS specific? Investigate other SCMs -->
|
2005-04-18 17:50:55 -04:00
|
|
|
<!-- [JC] Commenting out until we're ready to use it... -->
|
|
|
|
<!-- class>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>Jdk</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>TrackableBase</superClass>
|
2005-03-08 01:06:22 -05:00
|
|
|
<description><![CDATA[Describes one Java environment]]></description>
|
|
|
|
<fields>
|
2005-03-16 01:29:35 -05:00
|
|
|
<field>
|
|
|
|
<name>active</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>false</required>
|
|
|
|
<defaultValue>false</defaultValue>
|
|
|
|
<description><![CDATA[Whether this JDK is the active one.]]></description>
|
|
|
|
<type>boolean</type>
|
|
|
|
</field>
|
2005-03-08 01:06:22 -05:00
|
|
|
<field>
|
|
|
|
<name>version</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-08 01:06:22 -05:00
|
|
|
<required>true</required>
|
|
|
|
<description><![CDATA[The JDK major version (eg. '1.4').]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>javaHome</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-08 01:06:22 -05:00
|
|
|
<required>true</required>
|
|
|
|
<description><![CDATA[The JDK home.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
</fields>
|
2005-04-18 17:50:55 -04:00
|
|
|
</class -->
|
2005-03-09 17:13:07 -05:00
|
|
|
<class>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>Proxy</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>IdentifiableBase</superClass>
|
2005-03-09 17:13:07 -05:00
|
|
|
<fields>
|
|
|
|
<field>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>active</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-16 01:29:35 -05:00
|
|
|
<required>false</required>
|
|
|
|
<defaultValue>false</defaultValue>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[Whether this proxy configuration is the active one.]]>
|
|
|
|
</description>
|
2005-03-16 01:29:35 -05:00
|
|
|
<type>boolean</type>
|
2005-03-09 17:13:07 -05:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>protocol</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The proxy protocol.]]></description>
|
|
|
|
<type>String</type>
|
2005-04-11 21:45:21 -04:00
|
|
|
<defaultValue>http</defaultValue>
|
2005-03-09 17:13:07 -05:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>username</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The proxy user.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>password</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The proxy password.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>port</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The proxy port.]]></description>
|
|
|
|
<type>int</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>host</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The proxy host.]]></description>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>nonProxyHosts</name>
|
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
The list of non-proxied hosts (usually
|
|
|
|
comma-delimited).
|
|
|
|
]]></description>
|
2005-03-09 17:13:07 -05:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
</class>
|
2005-03-08 01:06:22 -05:00
|
|
|
<class>
|
2005-03-16 01:29:35 -05:00
|
|
|
<name>Server</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>IdentifiableBase</superClass>
|
2005-03-08 01:06:22 -05:00
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>username</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[The username used to authenticate.]]>
|
|
|
|
</description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
2005-03-09 00:48:31 -05:00
|
|
|
<name>password</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
The password used in conjunction with the username to authenticate.
|
|
|
|
]]></description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>privateKey</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[The private key location used to authenticate.]]>
|
|
|
|
</description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
2005-03-09 00:48:31 -05:00
|
|
|
<field>
|
|
|
|
<name>passphrase</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-03-10 20:52:18 -05:00
|
|
|
<description><![CDATA[
|
|
|
|
The passphrase used in conjunction with the privateKey to authenticate.
|
|
|
|
]]></description>
|
2005-03-09 00:48:31 -05:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
2005-03-08 01:06:22 -05:00
|
|
|
</fields>
|
|
|
|
</class>
|
|
|
|
<class>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>Mirror</name>
|
2005-03-09 17:13:07 -05:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>IdentifiableBase</superClass>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description> A download mirror for a given repository. </description>
|
2005-03-08 01:06:22 -05:00
|
|
|
<fields>
|
|
|
|
<field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>mirrorOf</name>
|
2005-03-08 01:06:22 -05:00
|
|
|
<required>true</required>
|
2005-05-31 12:24:34 -04:00
|
|
|
<version>1.0.0</version>
|
2005-03-08 01:06:22 -05:00
|
|
|
<type>String</type>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description> The server ID of the repository being mirrored, eg
|
2005-06-14 23:01:48 -04:00
|
|
|
"central". This MUST NOT match the mirror id. </description>
|
2005-03-08 01:06:22 -05:00
|
|
|
</field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<field>
|
|
|
|
<name>name</name>
|
2005-04-18 17:50:55 -04:00
|
|
|
<required>false</required>
|
2005-05-31 12:24:34 -04:00
|
|
|
<version>1.0.0</version>
|
2005-03-08 01:06:22 -05:00
|
|
|
<type>String</type>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description> The optional name that describes the mirror.
|
|
|
|
</description>
|
|
|
|
</field>
|
2005-04-18 17:50:55 -04:00
|
|
|
<field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>url</name>
|
|
|
|
<required>true</required>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
|
|
|
<description> The URL of the mirror repository. </description>
|
|
|
|
</field>
|
|
|
|
<!--
|
|
|
|
<field>
|
|
|
|
<name>allowOriginal</name>
|
2005-04-18 17:50:55 -04:00
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>boolean</type>
|
2005-05-31 12:24:34 -04:00
|
|
|
<defaultValue>true</defaultValue>
|
|
|
|
<description>
|
|
|
|
Whether to allow the user of the original as a fallback if an artifact is not found on the mirror.
|
|
|
|
</description>
|
2005-03-08 01:06:22 -05:00
|
|
|
</field>
|
2005-05-31 12:24:34 -04:00
|
|
|
-->
|
2005-03-08 01:06:22 -05:00
|
|
|
</fields>
|
|
|
|
</class>
|
2005-05-31 12:24:34 -04:00
|
|
|
<!-- Profile support -->
|
2005-05-05 02:24:07 -04:00
|
|
|
<class>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>Profile</name>
|
2005-05-05 02:24:07 -04:00
|
|
|
<version>1.0.0</version>
|
2005-06-14 23:01:48 -04:00
|
|
|
<superClass>IdentifiableBase</superClass>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[
|
|
|
|
Modifications to the build process which is keyed on some
|
|
|
|
sort of environmental parameter.
|
|
|
|
]]></description>
|
2005-05-05 02:24:07 -04:00
|
|
|
<fields>
|
|
|
|
<field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>activation</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The conditional logic which will automatically
|
|
|
|
trigger the inclusion of this profile.]]></description>
|
|
|
|
<association>
|
|
|
|
<type>Activation</type>
|
|
|
|
</association>
|
|
|
|
</field>
|
|
|
|
<field>
|
2005-06-07 23:27:43 -04:00
|
|
|
<name>properties</name>
|
|
|
|
<description>Extended configuration specific to this profile goes
|
2005-05-31 12:24:34 -04:00
|
|
|
here.</description>
|
2005-06-07 23:27:43 -04:00
|
|
|
<type>Properties</type>
|
|
|
|
<association xml.mapStyle="inline">
|
|
|
|
<type>String</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
2005-05-31 12:24:34 -04:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>repositories</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[The lists of the remote repositories]]>
|
|
|
|
</description>
|
|
|
|
<association>
|
|
|
|
<type>Repository</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>pluginRepositories</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
The lists of the remote repositories for discovering plugins
|
|
|
|
]]></description>
|
|
|
|
<association>
|
|
|
|
<type>Repository</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
<comment><![CDATA[ This may be removed or relocated in the near
|
|
|
|
future. It is undecided whether plugins really need a remote
|
|
|
|
repository set of their own. ]]></comment>
|
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
</class>
|
|
|
|
<class>
|
|
|
|
<name>Activation</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
The conditions within the build runtime environment which will trigger
|
|
|
|
the automatic inclusion of the parent build profile.
|
|
|
|
]]></description>
|
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>jdk</name>
|
2005-05-05 02:24:07 -04:00
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[
|
|
|
|
Specifies that this profile will be activated when a matching JDK is detected.
|
|
|
|
]]></description>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>property</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
Specifies that this profile will be activated when this System property is specified.
|
|
|
|
]]></description>
|
2005-06-07 18:36:44 -04:00
|
|
|
<association>
|
|
|
|
<type>ActivationProperty</type>
|
|
|
|
</association>
|
2005-05-31 12:24:34 -04:00
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
</class>
|
|
|
|
<class>
|
|
|
|
<name>Repository</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
Repository contains the information needed
|
|
|
|
for establishing connections with remote repoistory
|
|
|
|
]]></description>
|
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
A unique identifier for a repository.
|
|
|
|
]]></description>
|
|
|
|
<type>String</type>
|
2005-05-05 02:24:07 -04:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[
|
|
|
|
Human readable name of the repository
|
|
|
|
]]></description>
|
2005-05-05 02:24:07 -04:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>url</name>
|
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description><![CDATA[
|
|
|
|
The url of the repository
|
|
|
|
]]></description>
|
2005-05-05 02:24:07 -04:00
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
2005-05-31 12:24:34 -04:00
|
|
|
<name>snapshotPolicy</name>
|
2005-05-05 02:24:07 -04:00
|
|
|
<version>1.0.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<description> The policy for downloading snapshots - can be "always",
|
|
|
|
"daily" (default), "interval:XXX" (in minutes) or "never".
|
|
|
|
</description>
|
|
|
|
<type>String</type>
|
|
|
|
<defaultValue>daily</defaultValue>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>layout</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description>The type of layout this repository uses for locating and
|
|
|
|
storing artifacts - can be "legacy" or "default".</description>
|
|
|
|
<type>String</type>
|
|
|
|
<defaultValue>default</defaultValue>
|
2005-05-05 02:24:07 -04:00
|
|
|
</field>
|
|
|
|
</fields>
|
2005-05-31 12:24:34 -04:00
|
|
|
<codeSegments>
|
|
|
|
<codeSegment>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<code><![CDATA[
|
|
|
|
public boolean equals( Object obj )
|
|
|
|
{
|
|
|
|
Repository other = ( Repository ) obj;
|
|
|
|
|
|
|
|
boolean retValue = false;
|
|
|
|
|
|
|
|
if ( id != null )
|
|
|
|
{
|
|
|
|
retValue = id.equals( other.id );
|
|
|
|
}
|
|
|
|
|
|
|
|
return retValue;
|
|
|
|
}
|
|
|
|
]]></code>
|
|
|
|
</codeSegment>
|
|
|
|
</codeSegments>
|
2005-05-05 02:24:07 -04:00
|
|
|
</class>
|
2005-06-07 18:36:44 -04:00
|
|
|
<class>
|
|
|
|
<name>ActivationProperty</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description><![CDATA[
|
|
|
|
This is the property specification used to activate a profile. If the value field is empty,
|
|
|
|
then the existence of the named property will activate the profile, otherwise it does a case-sensitive
|
|
|
|
match against the property value as well.
|
|
|
|
]]></description>
|
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
|
|
|
<required>true</required>
|
|
|
|
<description>The name of the property to be used to activate a profile</description>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>value</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
|
|
|
<description>The value of the property to be used to activate a profile</description>
|
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
</class>
|
2005-05-31 12:24:34 -04:00
|
|
|
<!-- /BuildProfile support -->
|
2005-06-14 23:01:48 -04:00
|
|
|
<class>
|
|
|
|
<name>PluginUpdate</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<superClass>TrackableBase</superClass>
|
|
|
|
<description>Policy for updating a single plugin.</description>
|
|
|
|
<fields>
|
|
|
|
<field>
|
|
|
|
<name>groupId</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>true</required>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>artifactId</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<required>true</required>
|
|
|
|
<type>String</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>autoUpdate</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>boolean</type>
|
|
|
|
<default>false</default>
|
|
|
|
<description>Whether to automatically update this plugin - false means prompt the user.</description>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>useVersion</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<type>String</type>
|
|
|
|
<description>The current version of this plugin, to be used until the appropriate update actions happen.</description>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>rejectedVersions</name>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<description>The list of versions for this plugin that the user declined to "install"</description>
|
|
|
|
<association>
|
|
|
|
<type>String</type>
|
|
|
|
<multiplicity>*</multiplicity>
|
|
|
|
</association>
|
|
|
|
</field>
|
|
|
|
</fields>
|
|
|
|
<codeSegments>
|
|
|
|
<codeSegment>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<code><![CDATA[
|
|
|
|
public String getKey()
|
|
|
|
{
|
|
|
|
return getGroupId() + ":" + getArtifactId();
|
|
|
|
}
|
|
|
|
]]></code>
|
|
|
|
</codeSegment>
|
|
|
|
</codeSegments>
|
|
|
|
</class>
|
2005-03-08 01:06:22 -05:00
|
|
|
</classes>
|
2005-05-31 12:24:34 -04:00
|
|
|
</model>
|