- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for hasOption (0.13 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
@Override public Optional<String> alternatePomFile() { if (commandLine.hasOption(CLIManager.ALTERNATE_POM_FILE)) { return Optional.of(commandLine.getOptionValue(CLIManager.ALTERNATE_POM_FILE)); } return Optional.empty(); } @Override public Optional<Boolean> nonRecursive() { if (commandLine.hasOption(CLIManager.NON_RECURSIVE)) { return Optional.of(Boolean.TRUE); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
if (commandLine.hasOption(CLIManager.FAIL_ON_SEVERITY)) { return Optional.of(commandLine.getOptionValue(CLIManager.FAIL_ON_SEVERITY)); } return Optional.empty(); } @Override public Optional<Boolean> nonInteractive() { if (commandLine.hasOption(CLIManager.NON_INTERACTIVE) || commandLine.hasOption(CLIManager.BATCH_MODE)) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Oct 08 07:36:42 UTC 2025 - 21.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
String workingDirectory = cliRequest.getWorkingDirectory(); MavenExecutionRequest request = cliRequest.getRequest(); File userSettingsFile; if (commandLine.hasOption(CLIManager.ALTERNATE_USER_SETTINGS)) { userSettingsFile = new File(commandLine.getOptionValue(CLIManager.ALTERNATE_USER_SETTINGS)); userSettingsFile = resolveFile(userSettingsFile, workingDirectory);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 19 18:49:57 UTC 2025 - 12K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
CommandLine commandLine = parser.parse(options, cleanArgs); // to trigger deprecation handler, so we can report deprecation BEFORE we actually use options options.getOptions().forEach(commandLine::hasOption); return commandLine; } public Set<Option> getUsedDeprecatedOptions() { return usedDeprecatedOptions; } public void displayHelp(PrintStream stdout) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0)