- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getMojoExecution (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
public List<MojoExecution> getMojoExecutions() { List<MojoExecution> result = new ArrayList<>(); for (ExecutionPlanItem executionPlanItem : planItem) { result.add(executionPlanItem.getMojoExecution()); } return result; } /** * Get set of plugins having a goal/mojo used but not marked @threadSafe *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/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
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) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
*/ private void processEvent(ExecutionEvent event) { MavenProject project = event.getProject(); switch (event.getType()) { case MojoStarted: String phase = event.getMojoExecution().getLifecyclePhase(); if (phase != null) { Deque<String> phases = getLifecycles(project); if (!Objects.equals(phase, phases.peekLast())) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0)