Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getEffectiveSettings (0.12 sec)

  1. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java

                                mavenSystemHome != null ? mavenSystemHome.resolve("settings.xml") : null,
                                mavenUserHome.resolve("settings.xml"))
                        .getEffectiveSettings();
    
                settings.getProfiles();
    
                // local repository
                String localRepository = settings.getLocalRepository() != null
                        ? settings.getLocalRepository()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            SettingsBuilderResult settingsResult = settingsBuilder.build(settingsRequest);
            customizeSettingsResult(context, settingsResult);
    
            context.effectiveSettings = settingsResult.getEffectiveSettings();
            context.interactive = mayDisableInteractiveMode(context, context.effectiveSettings.isInteractiveMode());
            context.localRepositoryPath = localRepositoryPath(context);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top