Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for cwd (0.01 sec)

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

     * is mutable (as CWD may be changed), but allows transition only to existing directories.
     */
    public final class CWD implements Supplier<Path> {
        /**
         * Creates instance out of {@link Path}.
         */
        public static CWD create(Path path) {
            return new CWD(CliUtils.getCanonicalPath(path));
        }
    
        private Path directory;
    
        private CWD(Path directory) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 14:09:05 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java

            return new MavenParser();
        }
    
        @Test
        void defaultFs(
                @TempDir(cleanup = CleanupMode.ON_SUCCESS) Path cwd,
                @TempDir(cleanup = CleanupMode.ON_SUCCESS) Path userHome)
                throws Exception {
            invoke(cwd, userHome, List.of("verify"), List.of());
        }
    
        @Disabled("Enable it when fully moved to NIO2 with Path/Filesystem (ie MavenExecutionRequest)")
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

            private List<Completer> cdCompleter(String name) {
                return List.of(new ArgumentCompleter(new Completers.DirectoriesCompleter(shellContext.cwd)));
            }
    
            private void pwd(CommandInput input) {
                try {
                    shellContext.writer.accept(shellContext.cwd.get().toString());
                } catch (Exception e) {
                    saveException(e);
                }
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java

                }
                """;
    
        protected Map<String, String> invoke(Path cwd, Path userHome, Collection<String> goals, Collection<String> args)
                throws Exception {
            Files.createDirectories(cwd.resolve(".mvn"));
            Path pom = cwd.resolve("pom.xml").toAbsolutePath();
            Files.writeString(pom, POM_STRING);
            Path appJava = cwd.resolve("src/main/java/org/apache/maven/samples/sample/App.java");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseInvokerRequest.java

                @Nullable CIInfo ciInfo,
                @Nullable Options options) {
            this.parserRequest = requireNonNull(parserRequest);
            this.parsingFailed = parsingFailed;
            this.cwd = requireNonNull(cwd);
            this.installationDirectory = requireNonNull(installationDirectory);
            this.userHomeDirectory = requireNonNull(userHomeDirectory);
    
            this.userProperties = requireNonNull(userProperties);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

            }
    
            public Builder lookup(@Nonnull Lookup lookup) {
                this.lookup = requireNonNull(lookup);
                return this;
            }
    
            public Builder cwd(Path cwd) {
                this.cwd = cwd;
                return this;
            }
    
            public Builder mavenHome(Path mavenHome) {
                this.mavenHome = mavenHome;
                return this;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java

        public final CWD cwd;
        public final Path installationDirectory;
        public final Path userDirectory;
        public final boolean containerCapsuleManaged;
        private final Options options;
    
        public LookupContext(InvokerRequest invokerRequest, boolean containerCapsuleManaged, Options options) {
            this.invokerRequest = requireNonNull(invokerRequest);
            this.cwd = CWD.create(invokerRequest.cwd());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            LocalContext context = new LocalContext(parserRequest);
    
            // the basics
            try {
                context.cwd = getCwd(context);
            } catch (Exception e) {
                context.parsingFailed = true;
                context.cwd = getCanonicalPath(Paths.get("."));
                parserRequest.logger().error("Error determining working directory", e);
            }
            try {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java

        @Override
        protected int execute(LookupContext context) throws Exception {
            // set up JLine built-in commands
            ConfigurationPath configPath = new ConfigurationPath(context.cwd.get(), context.cwd.get());
            Builtins builtins = new Builtins(context.cwd, configPath, null);
            builtins.rename(Builtins.Command.TTOP, "top");
            builtins.alias("zle", "widget");
            builtins.alias("bindkey", "keymap");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  10. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvokerTest.java

            return new MavenParser();
        }
    
        @Test
        void defaultFs(
                @TempDir(cleanup = CleanupMode.ON_SUCCESS) Path cwd,
                @TempDir(cleanup = CleanupMode.ON_SUCCESS) Path userHome)
                throws Exception {
            invoke(cwd, userHome, List.of("verify"), List.of());
        }
    
        @Disabled("Enable it when fully moved to NIO2 with Path/Filesystem (ie MavenExecutionRequest)")
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 10:47:37 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top