Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for MojoExecutionException (0.07 sec)

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

                throws PluginResolutionException, PluginManagerException;
    
        void executeMojo(MavenSession session, MojoExecution execution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                this.mojoV4 = mojoV4;
            }
    
            @Override
            public void execute() throws MojoExecutionException {
                try {
                    mojoV4.execute();
                } catch (RuntimeException e) {
                    throw e;
                } catch (Exception e) {
                    throw new MojoExecutionException(e);
                }
            }
    
            @Override
            public void setLog(Log log) {}
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    /**
     */
    @Deprecated
    public interface PluginManager {
        String ROLE = PluginManager.class.getName();
    
        void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
                        InvalidDependencyVersionException, PluginManagerException, PluginConfigurationException;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    import org.apache.maven.plugin.InvalidPluginException;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.apache.maven.plugin.MojoFailureException;
    import org.apache.maven.plugin.PluginConfigurationException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

        /**
         * Constructs a new {@code MojoException} providing a {@code message}.
         */
        public MojoException(String message) {
            super(message);
        }
    
        /**
         * Constructs a new {@code MojoExecutionException} wrapping an underlying {@code Throwable}.
         *
         * @param cause the cause which is saved for later retrieval by the {@link #getCause()} method.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

    import org.apache.maven.lifecycle.internal.TaskSegment;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.junit.jupiter.api.Test;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

    import org.apache.maven.plugin.BuildPluginManager;
    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.apache.maven.plugin.MojoExecutionRunner;
    import org.apache.maven.plugin.MojoFailureException;
    import org.apache.maven.plugin.MojosExecutionStrategy;
    import org.apache.maven.plugin.PluginConfigurationException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top