Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for executeMojo (0.55 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top