Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for workingDirectory (0.09 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

            this.settingsBuilder = settingsBuilder;
        }
    
        @Override
        public void process(CliRequest cliRequest) throws Exception {
            CommandLine commandLine = cliRequest.getCommandLine();
            String workingDirectory = cliRequest.getWorkingDirectory();
            MavenExecutionRequest request = cliRequest.getRequest();
    
            File userSettingsFile;
    
            if (commandLine.hasOption(CLIManager.ALTERNATE_USER_SETTINGS)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 19 18:49:57 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

    /**
     * CliRequest
     */
    @Deprecated
    public class CliRequest {
        String[] args;
    
        CommandLine commandLine;
    
        ClassWorld classWorld;
    
        String workingDirectory;
    
        File multiModuleProjectDirectory;
    
        Path rootDirectory;
    
        Path topDirectory;
    
        boolean verbose;
    
        boolean quiet;
    
        boolean showErrors = true;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java

        }
    
        /**
         * Creates a mock UpgradeContext with the specified working directory.
         *
         * @param workingDirectory the working directory to use
         * @return a mock UpgradeContext
         */
        public static UpgradeContext createMockContext(Path workingDirectory) {
            return createMockContext(workingDirectory, createDefaultOptions());
        }
    
        /**
         * Creates a mock UpgradeContext with the specified options.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

            this.executionTimeout = executionTimeout;
        }
    
        /**
         * Sets the working directory for the command.
         * @param workingDirectory The working directory.
         */
        public void setWorkingDirectory(final File workingDirectory) {
            this.workingDirectory = workingDirectory;
        }
    
        /**
         * Sets the encoding for command output.
         * @param commandOutputEncoding The command output encoding to set.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            }
    
        }
    
        /**
         * Sets the working directory for command execution.
         * @param workingDirectory The working directory.
         */
        public void setWorkingDirectory(final File workingDirectory) {
            this.workingDirectory = workingDirectory;
        }
    
        /**
         * Sets the maximum number of output lines to capture.
         * @param maxOutputLine The maximum output line count.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java

        }
    
        private UpgradeContext createMockContext(Path workingDirectory) {
            return TestUtils.createMockContext(workingDirectory);
        }
    
        private UpgradeContext createMockContext(Path workingDirectory, UpgradeOptions options) {
            return TestUtils.createMockContext(workingDirectory, options);
        }
    
        private UpgradeOptions createDefaultOptions() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            CommandLine commandLine = cliRequest.commandLine;
            String workingDirectory = cliRequest.workingDirectory;
            boolean quiet = cliRequest.quiet;
            boolean verbose = cliRequest.verbose;
            request.setShowErrors(cliRequest.showErrors); // default: false
            File baseDirectory = new File(workingDirectory, "").getAbsoluteFile();
    
            disableInteractiveModeIfNeeded(cliRequest, request);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            MessageUtils.setColorEnabled(true);
            request = new CliRequest(new String[] {"-l", "target/temp/mvn.log"}, null);
            request.workingDirectory = "target/temp";
            cli.cli(request);
            cli.properties(request);
            cli.logging(request);
            assertFalse(MessageUtils.isColorEnabled(), "Expected MessageUtils.isColorEnabled() to return false");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

        }
    
        protected void init(C context) throws Exception {
            Map<String, Object> data = new HashMap<>();
            data.put("plexus", context.lookup.lookup(PlexusContainer.class));
            data.put("workingDirectory", context.cwd.get().toString());
            data.put("systemProperties", toProperties(context.protoSession.getSystemProperties()));
            data.put("userProperties", toProperties(context.protoSession.getUserProperties()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top