Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for LifecycleExecutionException (0.79 sec)

  1. 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);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  2. 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;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. 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 {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  4. 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;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingProjectExecutionListener.java

        public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
                listener.beforeProjectExecution(event);
            }
        }
    
        public void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException {
            for (ProjectExecutionListener listener : listeners) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  6. 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);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  7. 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) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  8. 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
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

    import java.util.Objects;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    import org.apache.maven.RepositoryUtils;
    import org.apache.maven.artifact.Artifact;
    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;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/MojosExecutionStrategy.java

         * @param mojoExecutionRunner mojo execution task which must be invoked by a strategy to actually run it
         * @throws LifecycleExecutionException
         */
        void execute(List<MojoExecution> mojos, MavenSession session, MojoExecutionRunner mojoExecutionRunner)
                throws LifecycleExecutionException;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.7K bytes
    - Viewed (0)
Back to top