Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parsingFailed (0.04 sec)

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

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

                }
            }
        }
    
        protected abstract C createContext(InvokerRequest invokerRequest);
    
        protected void validate(C context) throws Exception {
            if (context.invokerRequest.parsingFailed()) {
                // in case of parser errors: report errors and bail out; invokerRequest contents may be incomplete
                // in case of mvnsh the context.logger != context.invokerRequest.parserRequest.logger
    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