Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for executeMojo (0.05 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/BuildPluginManagerStub.java

        }
    
        @Override
        public ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor) {
            return null;
        }
    
        @Override
        public void executeMojo(MavenSession session, MojoExecution execution) {}
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/BuildPluginManager.java

        ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor)
                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)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            if (executePhase != null) {
                mojo.setExecutePhase(executePhase);
            }
    
            String executeMojo = c.getChild("executeGoal").getValue();
    
            if (executeMojo != null) {
                mojo.setExecuteGoal(executeMojo);
            }
    
            String executeLifecycle = c.getChild("executeLifecycle").getValue();
    
            if (executeLifecycle != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    @Deprecated
    public interface PluginManager {
        String ROLE = PluginManager.class.getName();
    
        void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

            this.pluginVersionResolver = pluginVersionResolver;
            this.pluginPrefixResolver = pluginPrefixResolver;
            this.legacySupport = legacySupport;
        }
    
        @Override
        public void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    ac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural \f0\fs24 \cf0 executeMojo()}Bounds{{681.5, 559}, {17, 46}}ClassShapedGraphicHF{1, 0.5}{1, -0.5}{-1, 0.5}{-1, -0.5}{0.5, 1}{-0.5, 1}{0.5, -1}{-0.5, -1}ShapeRectangleTextAl{690, 34.5}{690, 650}StylestrokeHeadArrow.4285709857940674Patt.5TailID112Bounds{{636, 20}, {108, 14}...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 96.7K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        // ----------------------------------------------------------------------
        // Mojo execution
        // ----------------------------------------------------------------------
    
        @Override
        public void executeMojo(MavenSession session, MojoExecution mojoExecution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException {
            MavenProject project = session.getCurrentProject();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            eventCatapult.fire(ExecutionEvent.Type.MojoStarted, session, mojoExecution);
            try {
                try {
                    pluginManager.executeMojo(session, mojoExecution);
                } catch (MojoFailureException
                        | PluginManagerException
                        | PluginConfigurationException
                        | MojoExecutionException
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top