- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getCommandRegistries (0.08 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellCommandRegistryHolder.java
public void addCommandRegistry(CommandRegistry commandRegistry) { requireNonNull(commandRegistry, "commandRegistry"); this.commandRegistries.add(commandRegistry); } public CommandRegistry[] getCommandRegistries() { return commandRegistries.toArray(new CommandRegistry[0]); } @Override public void close() throws Exception { ArrayList<Exception> exceptions = new ArrayList<>();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 17 09:50:45 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
return command.startsWith("!") || super.isCommandOrScript(command); } }; systemRegistry.setCommandRegistries(holder.getCommandRegistries()); Path history = context.userDirectory.resolve(".mvnsh_history"); LineReader reader = LineReaderBuilder.builder() .terminal(context.terminal)
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 10.1K bytes - Click Count (0)