Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for LifecycleExecutionException (0.13 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

        // used by the site plugin 3.x
        List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws LifecycleExecutionException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                    logSummary(context, summary, references, "");
    
                    if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {
                        failedProjects.add(lifecycleExecutionException.getProject());
                    }
                }
    
                context.logger.error("");
    
                if (!context.options().showErrors().orElse(false)) {
    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. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

    import org.apache.maven.graph.ProjectSelector;
    import org.apache.maven.internal.impl.DefaultSessionFactory;
    import org.apache.maven.internal.impl.InternalMavenSession;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.internal.ExecutionEventCatapult;
    import org.apache.maven.lifecycle.internal.LifecycleStarter;
    import org.apache.maven.model.building.ModelProblem;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon May 05 16:58:52 UTC 2025
    - 28.7K bytes
    - Viewed (1)
  4. 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