- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getEffectiveSettings (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java
/** * Gets the assembled settings. * * @return the assembled settings, never {@code null} */ @Nonnull Settings getEffectiveSettings(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severityRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java
} private Settings build(SettingsBuildingRequest request) throws IOException, XmlPullParserException { try { return settingsBuilder.build(request).getEffectiveSettings(); } catch (SettingsBuildingException e) { throw new IOException(e.getMessage(), e); } } /** @since 2.1 */ @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
if (request.getEventSpyDispatcher() != null) { request.getEventSpyDispatcher().onEvent(settingsResult); } populateFromSettings(request, settingsResult.getEffectiveSettings()); if (!settingsResult.getProblems().isEmpty() && LOGGER.isWarnEnabled()) { LOGGER.warn(""); LOGGER.warn("Some problems were encountered while building the effective settings");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 19 18:49:57 UTC 2025 - 12K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
if (context.eventSpyDispatcher != null) { context.eventSpyDispatcher.onEvent(settingsResult); } context.effectiveSettings = settingsResult.getEffectiveSettings(); context.interactive = mayDisableInteractiveMode(context, context.effectiveSettings.isInteractiveMode()); context.localRepositoryPath = localRepositoryPath(context);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0)