Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseCliOptions (0.07 sec)

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

                    context.parserRequest.err(),
                    context.extensions,
                    context.options);
        }
    
        @Override
        protected List<EncryptOptions> parseCliOptions(LocalContext context) throws ParserException {
            return Collections.singletonList(parseEncryptCliOptions(context.parserRequest.args()));
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/BaseMavenParser.java

    public abstract class BaseMavenParser<O extends MavenOptions, R extends MavenInvokerRequest<O>> extends BaseParser<O, R>
            implements MavenParser<R> {
    
        @Override
        protected List<O> parseCliOptions(LocalContext context) throws ParserException, IOException {
            ArrayList<O> result = new ArrayList<>();
            // CLI args
            result.add(parseMavenCliOptions(context.parserRequest.args()));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top