Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    import org.apache.maven.lifecycle.DefaultLifecycles;
    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.MavenExecutionPlan;
    import org.apache.maven.lifecycle.internal.ExecutionPlanItem;
    import org.apache.maven.lifecycle.internal.LifecycleExecutionPlanCalculator;
    import org.apache.maven.lifecycle.internal.ProjectBuildList;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "0.1", mojoExecution.getMojoDescriptor().getPluginDescriptor().getVersion());
        }
    
        List<MojoExecution> getExecutions(MavenExecutionPlan mavenExecutionPlan) {
            List<MojoExecution> result = new ArrayList<>();
            for (ExecutionPlanItem executionPlanItem : mavenExecutionPlan) {
                result.add(executionPlanItem.getMojoExecution());
            }
            return result;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            }
    
            final List<ExecutionPlanItem> planItem = ExecutionPlanItem.createExecutionPlanItems(project, executions);
    
            return new MavenExecutionPlan(planItem, defaultLifecycles);
        }
    
        @Override
        public MavenExecutionPlan calculateExecutionPlan(MavenSession session, MavenProject project, List<Task> tasks)
    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/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.MavenExecutionPlan;
    import org.apache.maven.lifecycle.internal.ExecutionEventCatapult;
    import org.apache.maven.lifecycle.internal.LifecycleDebugLogger;
    import org.apache.maven.lifecycle.internal.LifecycleExecutionPlanCalculator;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top