Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ShellCommandRegistryFactory (0.07 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellCommandRegistryFactory.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnsh;
    
    import org.apache.maven.cling.invoker.LookupContext;
    import org.jline.console.CommandRegistry;
    
    public interface ShellCommandRegistryFactory {
        CommandRegistry createShellCommandRegistry(LookupContext context);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 17 09:50:45 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java

            holder.addCommandRegistry(builtins);
    
            // gather commands
            Map<String, ShellCommandRegistryFactory> factories =
                    context.lookup.lookupMap(ShellCommandRegistryFactory.class);
            for (Map.Entry<String, ShellCommandRegistryFactory> entry : factories.entrySet()) {
                holder.addCommandRegistry(entry.getValue().createShellCommandRegistry(context));
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

    import org.apache.maven.cling.invoker.mvnenc.EncryptInvoker;
    import org.apache.maven.cling.invoker.mvnenc.EncryptParser;
    import org.apache.maven.cling.invoker.mvnenc.Goal;
    import org.apache.maven.cling.invoker.mvnsh.ShellCommandRegistryFactory;
    import org.apache.maven.cling.invoker.mvnup.UpgradeInvoker;
    import org.apache.maven.cling.invoker.mvnup.UpgradeParser;
    import org.apache.maven.impl.util.Os;
    import org.jline.builtins.Completers;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top