Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for LifecycleExecutionException (0.3 sec)

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

    import org.apache.maven.project.MavenProject;
    
    /**
     */
    public class LifecycleExecutionException extends Exception {
        private MavenProject project;
    
        public LifecycleExecutionException(String message) {
            super(message);
        }
    
        public LifecycleExecutionException(Throwable cause) {
            super(cause);
        }
    
        public LifecycleExecutionException(String message, Throwable cause) {
            super(message, cause);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/CompoundProjectExecutionListener.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) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. 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;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

         */
        class CacheRecord {
    
            private final Set<Artifact> artifacts;
    
            private final LifecycleExecutionException exception;
    
            CacheRecord(Set<Artifact> artifacts) {
                this.artifacts = artifacts;
                this.exception = null;
            }
    
            CacheRecord(LifecycleExecutionException exception) {
                this.artifacts = null;
                this.exception = exception;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

    public interface ProjectExecutionListener {
        void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException;
    
        void afterProjectExecutionFailure(ProjectExecutionEvent event);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecutionRunner.java

    package org.apache.maven.plugin;
    
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    
    /**
     * Provides context for mojo execution. Invocation of {@link #run(MojoExecution)} will result in actual execution
     */
    public interface MojoExecutionRunner {
        /**
         * Runs mojo execution
         *
         * @param execution mojo execution
         * @throws LifecycleExecutionException
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. 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;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  9. 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 {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java

                throws LifecycleExecutionException {}
    
        @Override
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent projectExecutionEvent)
                throws LifecycleExecutionException {}
    
        @Override
        public void afterProjectExecutionSuccess(ProjectExecutionEvent projectExecutionEvent)
                throws LifecycleExecutionException {}
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top