Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for MojoExecution (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            fillMojoDescriptor(session, project, mojoExecution);
    
            mojoExecutionConfigurator(mojoExecution)
                    .configure(project, mojoExecution, MojoExecution.Source.CLI.equals(mojoExecution.getSource()));
    
            finalizeMojoConfiguration(mojoExecution);
    
            calculateForkedExecutions(mojoExecution, session, project, alreadyPlannedExecutions);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            return getNumberOfExceutions(projectBuildList);
        }
    
        @Override
        public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws MojoNotFoundException, PluginNotFoundException, PluginResolutionException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                @Override
                public void run(MojoExecution mojoExecution) throws LifecycleExecutionException {
                    MojoExecutor.this.execute(session, mojoExecution, dependencyContext, phaseRecorder);
                }
            });
        }
    
        private void execute(
                MavenSession session,
                MojoExecution mojoExecution,
                DependencyContext dependencyContext,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            this(session, null);
        }
    
        public PluginParameterExpressionEvaluator(MavenSession session, MojoExecution mojoExecution) {
            this.session = session;
            this.mojoExecution = mojoExecution;
            this.properties = new Properties();
            this.project = session.getCurrentProject();
    
            //
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        @Override
        public void executeMojo(MavenSession session, MojoExecution mojoExecution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException {
            MavenProject project = session.getCurrentProject();
    
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            Mojo mojo = null;
    
            ClassRealm pluginRealm;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            MojoExecution mojoExecution = newMojoExecution(session);
    
            return new PluginParameterExpressionEvaluatorV4(
                    session, project != null ? new DefaultProject(session, project) : null, mojoExecution);
        }
    
        private MojoExecution newMojoExecution(Session session) {
            PluginDescriptor pd = new PluginDescriptor();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            List<MojoExecution> executionPlan = getExecutions(calculateExecutionPlan(session, "resources:resources"));
            assertEquals(1, executionPlan.size());
            MojoExecution mojoExecution = executionPlan.get(0);
            assertNotNull(mojoExecution);
            assertEquals(
                    "org.apache.maven.plugins",
                    mojoExecution.getMojoDescriptor().getPluginDescriptor().getGroupId());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            }
        }
    
        @Override
        public void releaseMojo(Object mojo, MojoExecution mojoExecution) {
            if (mojo != null) {
                try {
                    container.release(mojo);
                } catch (ComponentLifecycleException e) {
                    String goalExecId = mojoExecution.getGoal();
    
                    if (mojoExecution.getExecutionId() != null) {
                        logger.debug(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            MojoDescriptor mojo = new MojoDescriptor();
            mojo.setPluginDescriptor(pluginDescriptor);
            mojo.setGoal("goal");
    
            MojoExecution mojoExecution = new MojoExecution(mojo);
    
            return new PluginParameterExpressionEvaluator(session, mojoExecution);
        }
    
        protected Artifact createArtifact(String groupId, String artifactId, String version) throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

    import org.apache.maven.execution.BuildSummary;
    import org.apache.maven.execution.ExecutionEvent;
    import org.apache.maven.execution.MavenExecutionResult;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top