- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for getLifecyclePhase (0.09 sec)
-
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/PhaseRecorderTest.java
phaseRecorder.observeExecution(mojoExecution1); assertTrue(ProjectDependencyGraphStub.A.hasLifecyclePhase(mojoExecution1.getLifecyclePhase())); assertFalse(ProjectDependencyGraphStub.A.hasLifecyclePhase(mojoExecution2.getLifecyclePhase())); assertFalse(phaseRecorder.isDifferentPhase(mojoExecution1)); assertTrue(phaseRecorder.isDifferentPhase(mojoExecution2)); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseRecorder.java
public PhaseRecorder(MavenProject project) { this.project = project; } public void observeExecution(MojoExecution mojoExecution) { String lifecyclePhase = mojoExecution.getLifecyclePhase(); if (lifecyclePhase != null) { PhaseId phaseId = PhaseId.of(lifecyclePhase); if (lastLifecyclePhase == null) { lastLifecyclePhase = phaseId.phase();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java
} return result; } public MojoExecution getMojoExecution() { return mojoExecution; } public String getLifecyclePhase() { return mojoExecution.getLifecyclePhase(); } public Plugin getPlugin() { final MojoDescriptor mojoDescriptor = getMojoExecution().getMojoDescriptor(); return mojoDescriptor.getPluginDescriptor().getPlugin();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecyclePhaseNotFoundException.java
} /** * Gets the lifecycle phase that was not found. * * @return The lifecycle phase that was not found, never {@code null}. */ public String getLifecyclePhase() { return lifecyclePhase; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
Map<String, ExecutionPlanItem> lastInExistingPhases = new HashMap<>(); for (ExecutionPlanItem executionPlanItem : getExecutionPlanItems()) { lastInExistingPhases.put(executionPlanItem.getLifecyclePhase(), executionPlanItem); } ExecutionPlanItem lastSeenExecutionPlanItem = null; for (String phase : totalPhaseSet) {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/internal/impl/DefaultMojoExecution.java
} @Override public MojoDescriptor getDescriptor() { return delegate.getMojoDescriptor().getMojoDescriptorV4(); } @Override public String getLifecyclePhase() { return delegate.getLifecyclePhase(); } @Override public String getExecutionId() { return delegate.getExecutionId(); } @Override public String getGoal() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal(); @Nonnull String getLifecyclePhase(); @Nonnull Optional<XmlNode> getConfiguration();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
StringBuilder sb = new StringBuilder(256); sb.append(executionId); sb.append(configuration.toString()); return sb.toString(); } public String getLifecyclePhase() { return lifecyclePhase; } public void setLifecyclePhase(String lifecyclePhase) { this.lifecyclePhase = lifecyclePhase; } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
lifecycle = new PluginLifecycle(lifecycleOverlay, pluginDescriptor); } } else { if (execution.getLifecyclePhase() != null) { String n = execution.getLifecyclePhase(); String phaseName = n.startsWith(BEFORE) ? n.substring(BEFORE.length())
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
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)