Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for altInstallationToolchains (0.07 sec)

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

                }
            }
    
            Path installationToolchainsFile = null;
            if (context.options().altInstallationToolchains().isPresent()) {
                installationToolchainsFile = context.cwd.resolve(
                        context.options().altInstallationToolchains().get());
    
                if (!Files.isRegularFile(installationToolchainsFile)) {
                    throw new FileNotFoundException(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            options.altUserToolchains()
                    .ifPresent(userToolchains -> failIfFileNotExists(
                            context, userToolchains, "The specified user toolchains file does not exist"));
            options.altInstallationToolchains()
                    .ifPresent(installationToolchains -> failIfFileNotExists(
                            context, installationToolchains, "The specified installation toolchains file does not exist"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

                return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_USER_TOOLCHAINS));
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<String> altInstallationToolchains() {
            if (commandLine.hasOption(CLIManager.ALTERNATE_INSTALLATION_TOOLCHAINS)) {
                return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_INSTALLATION_TOOLCHAINS));
            }
    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