Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for LifecycleExecutionException (0.11 seconds)

  1. impl/maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingProjectExecutionListener.java

        @Override
        public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
                listener.beforeProjectExecution(event);
            }
        }
    
        @Override
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

        @Override
        public void execute(MavenSession session, List<MojoExecution> mojoExecutions) throws LifecycleExecutionException {
            executions.addAll(mojoExecutions);
        }
    
        @Override
        public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws LifecycleExecutionException {
            return null;
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                PhaseRecorder phaseRecorder)
                throws LifecycleExecutionException {
            execute(session, mojoExecution, dependencyContext);
            phaseRecorder.observeExecution(mojoExecution);
        }
    
        private void execute(MavenSession session, MojoExecution mojoExecution, DependencyContext dependencyContext)
                throws LifecycleExecutionException {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

    import org.apache.maven.artifact.ArtifactUtils;
    import org.apache.maven.eventspy.internal.EventSpyDispatcher;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.project.DefaultDependencyResolutionRequest;
    import org.apache.maven.project.DependencyResolutionException;
    import org.apache.maven.project.DependencyResolutionResult;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

    import java.util.Objects;
    import java.util.Set;
    
    import org.apache.maven.RepositoryUtils;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.impl.cache.Cache;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.internal.SetWithResolutionResult;
    import org.apache.maven.project.MavenProject;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.repository.LocalRepository;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  6. 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:
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  7. impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.Optional;
    
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.project.MavenProject;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    
    import static java.util.Arrays.asList;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  8. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                }
            };
            ProjectExecutionListener projectListener = new ProjectExecutionListener() {
                @Override
                public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
                    assertNotNull(event.getSession());
                    assertNotNull(event.getProject());
                    assertNull(event.getExecutionPlan());
                    assertNull(event.getCause());
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 22.9K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        }
    
        // Site 3.x
        @Override
        public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws LifecycleExecutionException {
            return mojoExecutor.executeForkedExecutions(mojoExecution, session);
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    import java.util.Collections;
    import java.util.IdentityHashMap;
    import java.util.List;
    import java.util.Set;
    
    import org.apache.maven.api.plugin.MojoException;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.model.building.ModelProblemUtils;
    import org.apache.maven.plugin.AbstractMojoExecutionException;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 10.9K bytes
    - Click Count (0)
Back to Top