Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PluginExecutionException (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java

    import org.apache.maven.project.MavenProject;
    
    /**
     * Exception in the plugin manager.
     */
    public class PluginExecutionException extends PluginManagerException {
    
        private final MojoExecution mojoExecution;
    
        public PluginExecutionException(MojoExecution mojoExecution, MavenProject project, String message) {
            super(mojoExecution.getMojoDescriptor(), project, message);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.apache.maven.plugin.PluginContainerException;
    import org.apache.maven.plugin.PluginExecutionException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                    throw new PluginExecutionException(mojoExecution, project, e);
                }
            } catch (MavenException e) {
                throw e;
            } catch (PluginContainerException e) {
                mojoExecutionListener.afterExecutionFailure(
                        new MojoExecutionEvent(session, project, mojoExecution, mojo, e));
                throw new PluginExecutionException(mojoExecution, project, e);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    import org.apache.maven.plugin.AbstractMojoExecutionException;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.apache.maven.plugin.PluginContainerException;
    import org.apache.maven.plugin.PluginExecutionException;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingResult;
    
    /*
    
    - test projects for each of these
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top