Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for executeMojo (0.17 sec)

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

            return MojoExecutorStub.createMojoDescriptor(plugin);
        }
    
        public ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor) {
            return null;
        }
    
        public void executeMojo(MavenSession session, MojoExecution execution) {}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            assertPluginDescriptor( mojoDescriptor, "org.apache.maven.plugins", "maven-remote-resources-plugin", "1.0-beta-2" );
            MojoExecution mojoExecution = new MojoExecution( mojoDescriptor );
            pluginManager.executeMojo( session, mojoExecution );
            */
        }
    
        // TODO this will be the basis of the customizable lifecycle execution so need to figure this out quickly.
        public void testSurefirePlugin() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

            this.pluginVersionResolver = pluginVersionResolver;
            this.pluginPrefixResolver = pluginPrefixResolver;
            this.legacySupport = legacySupport;
        }
    
        public void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. 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();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. 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 e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 11 17:19:02 UTC 2017
    - 96.7K bytes
    - Viewed (0)
Back to top