- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for altProjectSettings (0.07 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> altUserSettings() { return returnFirstPresentOrEmpty(Options::altUserSettings); } @Override public Optional<String> altProjectSettings() { return returnFirstPresentOrEmpty(Options::altProjectSettings); } @Override public Optional<String> altInstallationSettings() { return returnFirstPresentOrEmpty(Options::altInstallationSettings); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Feb 26 17:31:44 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} } Path projectSettingsFile = null; if (context.options().altProjectSettings().isPresent()) { projectSettingsFile = context.cwd.resolve(context.options().altProjectSettings().get()); if (!Files.isRegularFile(projectSettingsFile)) { throw new FileNotFoundException(Created: Sun Dec 28 03:35:09 GMT 2025 - 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/BaseParser.java
options.altUserSettings() .ifPresent(userSettings -> failIfFileNotExists(context, userSettings, "The specified user settings file does not exist")); options.altProjectSettings() .ifPresent(projectSettings -> failIfFileNotExists( context, projectSettings, "The specified project settings file does not exist")); options.altInstallationSettings()
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_USER_SETTINGS)); } return Optional.empty(); } @Override public Optional<String> altProjectSettings() { if (commandLine.hasOption(CLIManager.ALTERNATE_PROJECT_SETTINGS)) { return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_PROJECT_SETTINGS)); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0)