Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for altUserSettings (0.05 sec)

  1. 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()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  2. 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)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  3. 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();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
Back to top