Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PluginIncompatibleException (0.12 sec)

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

    /**
     * Signals a plugin which is not compatible with the current Maven runtime.
     */
    public class PluginIncompatibleException extends PluginManagerException {
    
        public PluginIncompatibleException(Plugin plugin, String message) {
            this(plugin, message, null);
        }
    
        public PluginIncompatibleException(Plugin plugin, String message, Throwable cause) {
            super(plugin, message, cause);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

        /**
         * Verifies that the specified plugin's prerequisites are met.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @since 4.0.0
         */
        void checkPrerequisites(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException;
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                String messages = prerequisiteExceptions.stream()
                        .map(IllegalStateException::getMessage)
                        .collect(Collectors.joining("\n\t"));
                PluginIncompatibleException pie = new PluginIncompatibleException(
                        pluginDescriptor.getPlugin(),
                        "\nThe plugin " + pluginDescriptor.getId() + " has unmet prerequisites: \n\t" + messages);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

    import org.apache.maven.model.Build;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.PluginIncompatibleException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.version.PluginVersionRequest;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

    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;
    import org.apache.maven.project.MavenProject;
    import org.slf4j.Logger;
    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