Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PluginIncompatibleException (0.3 sec)

  1. 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);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  2. 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;
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
Back to top