Package org.apache.maven.settings
Interface MavenSettingsBuilder
-
- All Known Implementing Classes:
DefaultMavenSettingsBuilder
@Deprecated public interface MavenSettingsBuilder
Deprecated.- Author:
- jdcasey, Jason van Zyl
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ALT_GLOBAL_SETTINGS_XML_LOCATION
Deprecated.static java.lang.String
ALT_LOCAL_REPOSITORY_LOCATION
Deprecated.static java.lang.String
ALT_USER_SETTINGS_XML_LOCATION
Deprecated.static java.lang.String
ROLE
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.apache.maven.settings.Settings
buildSettings()
Deprecated.org.apache.maven.settings.Settings
buildSettings(boolean useCachedSettings)
Deprecated.org.apache.maven.settings.Settings
buildSettings(java.io.File userSettingsFile)
Deprecated.org.apache.maven.settings.Settings
buildSettings(java.io.File userSettingsFile, boolean useCachedSettings)
Deprecated.org.apache.maven.settings.Settings
buildSettings(MavenExecutionRequest request)
Deprecated.
-
-
-
Field Detail
-
ROLE
static final java.lang.String ROLE
Deprecated.
-
ALT_USER_SETTINGS_XML_LOCATION
static final java.lang.String ALT_USER_SETTINGS_XML_LOCATION
Deprecated.- See Also:
- Constant Field Values
-
ALT_GLOBAL_SETTINGS_XML_LOCATION
static final java.lang.String ALT_GLOBAL_SETTINGS_XML_LOCATION
Deprecated.- See Also:
- Constant Field Values
-
ALT_LOCAL_REPOSITORY_LOCATION
static final java.lang.String ALT_LOCAL_REPOSITORY_LOCATION
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
buildSettings
org.apache.maven.settings.Settings buildSettings(MavenExecutionRequest request) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Deprecated.- Throws:
java.io.IOException
org.codehaus.plexus.util.xml.pull.XmlPullParserException
-
buildSettings
org.apache.maven.settings.Settings buildSettings() throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Deprecated.- Returns:
- a
Settings
object from the user settings file. - Throws:
java.io.IOException
- if anyorg.codehaus.plexus.util.xml.pull.XmlPullParserException
- if any
-
buildSettings
org.apache.maven.settings.Settings buildSettings(boolean useCachedSettings) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Deprecated.- Parameters:
useCachedSettings
- if true, doesn't reload the user settings- Returns:
- a
Settings
object from the user settings file. - Throws:
java.io.IOException
- if anyorg.codehaus.plexus.util.xml.pull.XmlPullParserException
- if any
-
buildSettings
org.apache.maven.settings.Settings buildSettings(java.io.File userSettingsFile) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Deprecated.- Parameters:
userSettingsFile
- a given user settings file- Returns:
- a
Settings
object from the user settings file. - Throws:
java.io.IOException
- if anyorg.codehaus.plexus.util.xml.pull.XmlPullParserException
- if any
-
buildSettings
org.apache.maven.settings.Settings buildSettings(java.io.File userSettingsFile, boolean useCachedSettings) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Deprecated.- Parameters:
userSettingsFile
- a given user settings fileuseCachedSettings
- if true, doesn't reload the user settings- Returns:
- a
Settings
object from the user settings file. - Throws:
java.io.IOException
- if anyorg.codehaus.plexus.util.xml.pull.XmlPullParserException
- if any
-
-