- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for altInstallationSettings (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java
public Optional<String> altProjectSettings() { return returnFirstPresentOrEmpty(Options::altProjectSettings); } @Override public Optional<String> altInstallationSettings() { return returnFirstPresentOrEmpty(Options::altInstallationSettings); } @Override public Optional<String> altUserToolchains() { return returnFirstPresentOrEmpty(Options::altUserToolchains); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Feb 26 17:31:44 GMT 2025 - 5.7K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
/** * Returns the path to an alternate installation settings file. * * @return an {@link Optional} containing the file path, or empty if not set */ @Nonnull Optional<String> altInstallationSettings(); /** * Returns the path to an alternate user toolchains file. * * @return an {@link Optional} containing the file path, or empty if not set */ @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Jan 13 16:14:35 GMT 2025 - 6.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} } Path installationSettingsFile = null; if (context.options().altInstallationSettings().isPresent()) { installationSettingsFile = context.cwd.resolve( context.options().altInstallationSettings().get()); if (!Files.isRegularFile(installationSettingsFile)) { throw new FileNotFoundException(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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_PROJECT_SETTINGS)); } return Optional.empty(); } @Override public Optional<String> altInstallationSettings() { if (commandLine.hasOption(CLIManager.ALTERNATE_INSTALLATION_SETTINGS)) { return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_INSTALLATION_SETTINGS)); }
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
.ifPresent(projectSettings -> failIfFileNotExists( context, projectSettings, "The specified project settings file does not exist")); options.altInstallationSettings() .ifPresent(installationSettings -> failIfFileNotExists( context, installationSettings, "The specified installation settings file does not exist"));
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)