Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PluginConfigurationException (3.06 sec)

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

    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    public class PluginConfigurationException extends Exception {
        private PluginDescriptor pluginDescriptor;
    
        private String originalMessage;
    
        public PluginConfigurationException(PluginDescriptor pluginDescriptor, String originalMessage) {
            super(originalMessage);
            this.pluginDescriptor = pluginDescriptor;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
                message += ": " + e.getMessage();
    
                throw new PluginConfigurationException(mojoDescriptor.getPluginDescriptor(), message, e);
            } catch (ComponentLookupException e) {
                throw new PluginConfigurationException(
                        mojoDescriptor.getPluginDescriptor(),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  3. 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)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.Parameter;
    
    /**
     * PluginParameterException
     */
    public class PluginParameterException extends PluginConfigurationException {
    
        private static final String LS = System.lineSeparator();
    
        private final List<Parameter> parameters;
    
        private final MojoDescriptor mojo;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    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;
    import org.apache.maven.plugin.PluginManager;
    import org.apache.maven.plugin.PluginManagerException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         * @return The ready-to-execute mojo, never {@code null}.
         */
        <T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution)
                throws PluginConfigurationException, PluginContainerException;
    
        /**
         * Releases the specified mojo back to the container.
         *
         * @param mojo The mojo to release, may be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
                        InvalidDependencyVersionException, PluginManagerException, PluginConfigurationException;
    
        PluginDescriptor getPluginDescriptorForPrefix(String prefix);
    
        Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project);
    
        PluginDescriptor verifyPlugin(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

    import org.apache.maven.plugin.MojoExecutionRunner;
    import org.apache.maven.plugin.MojoFailureException;
    import org.apache.maven.plugin.MojosExecutionStrategy;
    import org.apache.maven.plugin.PluginConfigurationException;
    import org.apache.maven.plugin.PluginIncompatibleException;
    import org.apache.maven.plugin.PluginManagerException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        @Override
        public void executeMojo(MavenSession session, MojoExecution mojoExecution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException {
            MavenProject project = session.getCurrentProject();
    
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            Mojo mojo = null;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top