- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PluginIncompatibleException (0.08 sec)
-
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) -
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)