Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

             * @param step The build step to execute
             * @throws IOException If there's an IO error during execution
             * @throws LifecycleExecutionException If there's a lifecycle execution error
             */
            private void executeStep(BuildStep step) throws IOException, LifecycleExecutionException {
                Clock clock = getClock(step.project);
                switch (step.name) {
                    case PLAN:
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    logSummary(summary, references, "", cliRequest.showErrors);
    
                    if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {
                        failedProjects.add(lifecycleExecutionException.getProject());
                    }
                }
    
                slf4jLogger.error("");
    
                if (!cliRequest.showErrors) {
    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