Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java

            context.info(getDescription());
            context.indent();
    
            try {
                UpgradeResult result = doApply(context, pomMap);
    
                // Log summary
                logSummary(context, result);
    
                return result;
            } catch (Exception e) {
                context.failure("Strategy execution failed: " + e.getMessage());
                return UpgradeResult.failure(pomMap.keySet(), Set.of());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                for (Throwable exception : result.getExceptions()) {
                    ExceptionSummary summary = handler.handleException(exception);
                    logSummary(context, summary, references, "");
    
                    if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {
                        failedProjects.add(lifecycleExecutionException.getProject());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                for (Throwable exception : result.getExceptions()) {
                    ExceptionSummary summary = handler.handleException(exception);
    
                    logSummary(summary, references, "", cliRequest.showErrors);
    
                    if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top