Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getCommandline (0.05 sec)

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

            this.classWorld = classWorld;
            this.request = new DefaultMavenExecutionRequest();
        }
    
        public String[] getArgs() {
            return args;
        }
    
        public CommandLine getCommandLine() {
            return commandLine;
        }
    
        public ClassWorld getClassWorld() {
            return classWorld;
        }
    
        public String getWorkingDirectory() {
            return workingDirectory;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

                    request.getUserProperties().getProperty("valTopDirectory"));
            assertEquals("C:\\myRootDirectory/my-child", request.getCommandLine().getOptionValue('f'));
            assertArrayEquals(
                    new String[] {"prefix:3.0.0:bar", "validate"},
                    request.getCommandLine().getArgs());
    
            Path p = fs.getPath(request.getUserProperties().getProperty("valTopDirectory"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  3. 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;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 19 18:49:57 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            return request;
        }
    
        private void disableInteractiveModeIfNeeded(final CliRequest cliRequest, final MavenExecutionRequest request) {
            CommandLine commandLine = cliRequest.getCommandLine();
            if (commandLine.hasOption(CLIManager.FORCE_INTERACTIVE)) {
                return;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String getExecutable(); public void addArguments(String[]); public void addEnvironment(String, String); public void addSystemEnvironment() throws Exception; public String[] getEnvironments(); public String[] getCurrentEnvironmen(); public String[] getCommandline(); public String[] getShellCommandline(); public String[] getArguments(); public String toString(); public static String quoteArgument(String) throws CommandLineException; public static String toString(String[]); public static String[] transl...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top