Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for altUserSettings (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                throws Exception {
            Path userSettingsFile = null;
            if (context.options().altUserSettings().isPresent()) {
                userSettingsFile =
                        context.cwd.resolve(context.options().altUserSettings().get());
    
                if (!Files.isRegularFile(userSettingsFile)) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            if (commandLine.hasOption(CLIManager.FORCE_INTERACTIVE)) {
                return Optional.of(Boolean.TRUE);
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<String> altUserSettings() {
            if (commandLine.hasOption(CLIManager.ALTERNATE_USER_SETTINGS)) {
                return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_USER_SETTINGS));
            }
            return Optional.empty();
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Oct 08 07:36:42 GMT 2025
    - 21.3K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                            .error("Invalid fail on severity threshold '" + c
                                    + "'. Supported values are 'WARN', 'WARNING' and 'ERROR'.");
                }
            });
            options.altUserSettings()
                    .ifPresent(userSettings ->
                            failIfFileNotExists(context, userSettings, "The specified user settings file does not exist"));
            options.altProjectSettings()
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 10 07:39:11 GMT 2025
    - 25.5K bytes
    - Click Count (0)
Back to Top