Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExecutionPlanItem (0.17 sec)

  1. 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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top