Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMojoExecutions (0.06 sec)

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

            MavenExecutionPlan plan = LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan();
            final List<MojoExecution> executions = plan.getMojoExecutions();
    
            final MojoExecution mojoExecution1 = executions.get(0);
            final MojoExecution mojoExecution2 = executions.get(1);
            phaseRecorder.observeExecution(mojoExecution1);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

            for (ExecutionPlanItem executionPlanItem : planItems) {
                result.add(executionPlanItem.getLifecyclePhase());
            }
            return result;
        }
    
        public List<MojoExecution> getMojoExecutions() {
            List<MojoExecution> result = new ArrayList<>();
            for (ExecutionPlanItem executionPlanItem : planItem) {
                result.add(executionPlanItem.getMojoExecution());
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                MavenExecutionPlan executionPlan =
                        builderCommon.resolveBuildPlan(session, currentProject, taskSegment, new HashSet<>());
                List<MojoExecution> mojoExecutions = executionPlan.getMojoExecutions();
    
                projectExecutionListener.beforeProjectLifecycleExecution(
                        new ProjectExecutionEvent(session, currentProject, mojoExecutions));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            logger.debug("=== PROJECT BUILD PLAN ================================================");
            logger.debug("Project:       " + BuilderCommon.getKey(currentProject));
    
            debugDependencyRequirements(executionPlan.getMojoExecutions());
    
            logger.debug("Repositories (dependencies): " + currentProject.getRemoteProjectRepositories());
            logger.debug("Repositories (plugins)     : " + currentProject.getRemotePluginRepositories());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top