- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for MojoExecutionException (0.15 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java
* @param cause */ public MojoExecutionException(String message, Exception cause) { super(message, cause); } /** * Construct a new <code>MojoExecutionException</code> exception wrapping an underlying <code>Throwable</code> * and providing a <code>message</code>. * * @param message * @param cause */ public MojoExecutionException(String message, Throwable cause) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java
* * @throws MojoExecutionException if an unexpected problem occurs. * 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; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java
ConnectException connEx = new ConnectException("Connection refused: connect"); IOException ioEx = new IOException("Unable to establish loopback connection", connEx); MojoExecutionException mojoEx = new MojoExecutionException("Error executing Jetty: Unable to establish loopback connection", ioEx); ExceptionHandler exceptionHandler = new DefaultExceptionHandler();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/DelegatingMojoExecutionListener.java
import org.apache.maven.plugin.MojoExecutionException; @Named @Singleton public class DelegatingMojoExecutionListener implements MojoExecutionListener { private final List<MojoExecutionListener> listeners = new CopyOnWriteArrayList<>(); @Override public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException { for (MojoExecutionListener listener : listeners) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/WeakMojoExecutionListener.java
* @since 3.1.2 */ public interface WeakMojoExecutionListener { void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException; void afterExecutionFailure(MojoExecutionEvent event);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeTest.java
@Override public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException { beforeExecution.incrementAndGet(); } @Override public void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException { afterExecutionSuccess.incrementAndGet(); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MojoExecutionListener.java
* @since 3.1.2 */ public interface MojoExecutionListener { void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException; void afterExecutionFailure(MojoExecutionEvent event);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java
@Override public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException { for (WeakMojoExecutionListener provided : getProvidedListeners()) { provided.beforeMojoExecution(event); } } @Override public void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException { for (WeakMojoExecutionListener provided : getProvidedListeners()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/CompoundMojoExecutionListener.java
} @Override public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException { for (MojoExecutionListener listener : listeners) { listener.beforeMojoExecution(event); } } @Override public void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException { for (MojoExecutionListener listener : listeners) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.9K bytes - Viewed (0) -
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)