Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for MojoFailureException (0.22 sec)

  1. 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);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. 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;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    g, Exception); public void MojoExecutionExcepti(String, Throwable); public void MojoExecutionExcepti(String); } org/apache/maven/plugin/MojoFailureException.class package org.apache.maven.plugin; public synchronized class MojoFailureException extends AbstractMojoExecutio { public void MojoFailureException(Object, String, String); public void MojoFailureException(String); } META-INF/maven/org.apache.maven/maven-plugin-api/pom.xml maven org.apache.maven 2.0 4.0.0 org.apache.maven maven-plugin-api Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. 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;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    g, Exception); public void MojoExecutionExcepti(String, Throwable); public void MojoExecutionExcepti(String); } org/apache/maven/plugin/MojoFailureException.class package org.apache.maven.plugin; public synchronized class MojoFailureException extends AbstractMojoExecutio { public void MojoFailureException(Object, String, String); public void MojoFailureException(String); } META-INF/maven/org.apache.maven/maven-plugin-api/pom.xml maven org.apache.maven 2.0 4.0.0 org.apache.maven maven-plugin-api Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. 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);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        // Mojo execution
        // ----------------------------------------------------------------------
    
        public void executeMojo(MavenSession session, MojoExecution mojoExecution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException {
            MavenProject project = session.getCurrentProject();
    
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. 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;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top