Interface SettingsBuildingResult
-
public interface SettingsBuildingResultCollects the output of the settings builder.- Author:
- Benjamin Bentmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.maven.settings.SettingsgetEffectiveSettings()Gets the assembled settings.java.util.List<SettingsProblem>getProblems()Gets the problems that were encountered during the settings building.
-
-
-
Method Detail
-
getEffectiveSettings
org.apache.maven.settings.Settings getEffectiveSettings()
Gets the assembled settings.- Returns:
- The assembled settings, never
null.
-
getProblems
java.util.List<SettingsProblem> getProblems()
Gets the problems that were encountered during the settings building. Note that only problems of severitySettingsProblem.Severity.WARNINGand below are reported here. Problems with a higher severity level cause the settings builder to fail with aSettingsBuildingException.- Returns:
- The problems that were encountered during the settings building, can be empty but never
null.
-
-