Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MojoException (0.29 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

     */
    @Experimental
    public class MojoException extends MavenException {
    
        protected Object source;
    
        protected String longMessage;
    
        /**
         * Construct a new <code>MojoException</code> exception providing the source and a short and long message:
         * these messages are used to improve the message written at the end of Maven build.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

     * infrastructure.<br>
     * It features an <code>execute()</code> method, which triggers the Mojo's build-process behavior, and can throw
     * a MojoException if error conditions occur.<br>
     *
     * @since 4.0.0
     */
    @Experimental
    @FunctionalInterface
    @Consumer
    public interface Mojo {
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

    import javax.inject.Singleton;
    
    import java.io.ByteArrayOutputStream;
    import java.io.PrintStream;
    import java.util.List;
    
    import org.apache.maven.api.Project;
    import org.apache.maven.api.plugin.MojoException;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top