Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for add_args (0.06 sec)

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

                        }
                    }
                    commandLineBuilder.addOption(option);
                }
                for (String arg : options.commandLine.getArgList()) {
                    commandLineBuilder.addArg(interpolator.interpolate(arg));
                }
                return new CommonsCliEncryptOptions(
                        options.source, (CLIManager) options.cliManager, commandLineBuilder.build());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java

                        }
                    }
                    commandLineBuilder.addOption(option);
                }
                for (String arg : options.commandLine.getArgList()) {
                    commandLineBuilder.addArg(interpolator.interpolate(arg));
                }
                return new CommonsCliMavenOptions(
                        options.source, (CLIManager) options.cliManager, commandLineBuilder.build());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // the args are easy, CLI only since maven.config file can only contain options
            for (String arg : mavenCli.getArgs()) {
                commandLineBuilder.addArg(arg);
            }
    
            /* Although this looks wrong in terms of order Commons CLI stores the value of options in
             * an array and when a value is potentionally overriden it is added to the array. The single
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top