Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for PluginContainerException (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                    throw pluginResolutionException;
                }
                if (e.getCause() instanceof PluginContainerException pluginContainerException) {
                    throw pluginContainerException;
                }
                throw e;
            }
        }
    
        @Override
        public CacheRecord put(Key key, ClassRealm pluginRealm, List<Artifact> pluginArtifacts) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                            + e.getClass().getName() + ": " + cause.getMessage());
                    pluginRealm.display(ps);
    
                    throw new PluginContainerException(mojoDescriptor, pluginRealm, os.toString(), cause);
                }
    
                throw new PluginContainerException(
                        mojoDescriptor,
                        pluginRealm,
                        "Unable to load the mojo '" + mojoDescriptor.getGoal()
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 16:35:21 GMT 2025
    - 46.4K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

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

    import org.apache.maven.model.building.ModelProblemUtils;
    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;
    
    /*
    
    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