Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getMojoExecutions (0.07 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)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                }
            }
    
            final String defaulModelId = DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID;
    
            List<String> unversionedPlugins = executionPlan.getMojoExecutions().stream()
                    .map(MojoExecution::getPlugin)
                    .filter(p -> p.getLocation("version") != null
                            && p.getLocation("version").getSource() != null
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    session, session.getCurrentProject(), Arrays.asList(task), false);
    
            MojoExecution execution = executionPlan.getMojoExecutions().get(0);
            assertEquals("maven-it-plugin", execution.getArtifactId(), execution.toString());
            assertNull(execution.getConfiguration());
    
            lifeCycleExecutionPlanCalculator.setupMojoExecution(
    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