- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getMojoExecutions (0.08 sec)
-
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) -
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) -
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() != nullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 10.3K bytes - Viewed (0) -
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)