Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ExecutionPlanItem (0.07 sec)

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

            this.phasesInExecutionPlan = new ArrayList<>(totalPhaseSet);
    
            Map<String, ExecutionPlanItem> lastInExistingPhases = new HashMap<>();
            for (ExecutionPlanItem executionPlanItem : getExecutionPlanItems()) {
                lastInExistingPhases.put(executionPlanItem.getLifecyclePhase(), executionPlanItem);
            }
    
            ExecutionPlanItem lastSeenExecutionPlanItem = null;
    
            for (String phase : totalPhaseSet) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

                        PluginResolutionException, LifecyclePhaseNotFoundException, LifecycleNotFoundException {
            final List<ExecutionPlanItem> planItemList =
                    ExecutionPlanItem.createExecutionPlanItems(project, mojoExecutions);
            return new MavenExecutionPlan(planItemList, getDefaultLifecycles());
        }
    
    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/DefaultLifecycleExecutionPlanCalculator.java

            if (setup) {
                setupMojoExecutions(session, project, executions);
            }
    
            final List<ExecutionPlanItem> planItem = ExecutionPlanItem.createExecutionPlanItems(project, executions);
    
            return new MavenExecutionPlan(planItem, defaultLifecycles);
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

        }
    
        List<MojoExecution> getExecutions(MavenExecutionPlan mavenExecutionPlan) {
            List<MojoExecution> result = new ArrayList<>();
            for (ExecutionPlanItem executionPlanItem : mavenExecutionPlan) {
                result.add(executionPlanItem.getMojoExecution());
            }
            return result;
        }
    
        // We need to take in multiple lifecycles
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top