- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for CLIManager (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
import org.apache.commons.cli.Option; import org.apache.commons.cli.Options; import org.apache.commons.cli.ParseException; import org.apache.maven.jline.MessageUtils; /** */ @Deprecated public class CLIManager { public static final char ALTERNATE_POM_FILE = 'f'; public static final char BATCH_MODE = 'B'; public static final String NON_INTERACTIVE = "non-interactive";Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Aug 06 04:56:48 GMT 2025 - 17.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java
CLIManager cliManager = new CLIManager(); return new CommonsCliUpgradeOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); } protected CommonsCliUpgradeOptions(String source, CLIManager cliManager, CommandLine commandLine) { super(source, cliManager, commandLine); } @Override @NonnullCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:48:39 GMT 2025 - 7K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
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); if (!userSettingsFile.isFile()) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 19 18:49:57 GMT 2025 - 12K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
CLIManager cliManager = new CLIManager(); return new CommonsCliOptions(source, cliManager, cliManager.parse(args)); } protected final String source; protected final CLIManager cliManager; protected final CommandLine commandLine; protected CommonsCliOptions(String source, CLIManager cliManager, CommandLine commandLine) {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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/CommonsCliEncryptOptions.java
CLIManager cliManager = new CLIManager(); return new CommonsCliEncryptOptions(Options.SOURCE_CLI, cliManager, cliManager.parse(args)); } protected CommonsCliEncryptOptions(String source, CLIManager cliManager, CommandLine commandLine) { super(source, cliManager, commandLine); } @Override public Optional<Boolean> force() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 25 17:39:57 GMT 2025 - 4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
// read .mvn/maven.config cli.initialize(request); cli.cli(request); assertEquals("multithreaded", request.commandLine.getOptionValue(CLIManager.BUILDER)); assertEquals("8", request.commandLine.getOptionValue(CLIManager.THREADS)); // override from command line request = new CliRequest(new String[] {"--builder", "foobar"}, null); cli.cli(request);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java
String s2 = opt2.getOpt() != null ? opt2.getOpt() : opt2.getLongOpt(); return s1.compareToIgnoreCase(s2); } } private static class CLIManagerExtension extends CLIManager { public Collection<Option> getOptions() { List<Option> optList = new ArrayList<>(options.getOptions()); optList.sort(new OptionComparator()); return optList; } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
context, context.invokerRequest .parserRequest() .args() .contains(CommonsCliOptions.CLIManager.SHOW_ERRORS_CLI_ARG), entries, context.logger); // we skip handleException above as we did output throw new InvokerException.ExitException(1); }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)