- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for MojoFailureException (0.15 seconds)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java
* @param longMessage */ public MojoFailureException(Object source, String shortMessage, String longMessage) { super(shortMessage); this.source = source; this.longMessage = longMessage; } /** * Construct a new <code>MojoFailureException</code> exception providing a message. * * @param message */ public MojoFailureException(String message) { super(message);Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.5K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java
* Throwing this exception causes a "BUILD ERROR" message to be displayed. * @throws MojoFailureException if an expected problem (such as a compilation failure) occurs. * Throwing this exception causes a "BUILD FAILURE" message to be displayed. */ void execute() throws MojoExecutionException, MojoFailureException; /**
Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/ProjectBuildFailureException.java
private final String projectId; public ProjectBuildFailureException(String projectId, MojoFailureException cause) { super("Build for project: " + projectId + " failed during execution of mojo.", cause); this.projectId = projectId; } public MojoFailureException getMojoFailureException() { return (MojoFailureException) getCause(); } public String getProjectId() { return projectId;Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 1.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java
String ROLE = PluginManager.class.getName(); void executeMojo(MavenProject project, MojoExecution execution, MavenSession session) throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException, InvalidDependencyVersionException, PluginManagerException, PluginConfigurationException; PluginDescriptor getPluginDescriptorForPrefix(String prefix);
Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 3.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
import org.apache.maven.plugin.LegacySupport; import org.apache.maven.plugin.MavenPluginManager; 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;
Created: 2026-04-05 03:35 - Last Modified: 2025-06-06 14:28 - 10.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java
import org.apache.maven.plugin.MojoExecution; import org.apache.maven.plugin.MojoExecutionException; 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;
Created: 2026-04-05 03:35 - Last Modified: 2025-06-12 14:55 - 21K bytes - Click Count (0)