- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PhaseExecutionPoint (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseExecutionPoint.java
* under the License. */ package org.apache.maven.lifecycle.internal; /** * Represents where a dynamic phase should be executed within a static phase. */ public enum PhaseExecutionPoint { /** * Execution must occur before any executions of the phase proper. Failure of any {@code #BEFORE} dynamic phaseRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseId.java
int phaseStart; if (phase.startsWith(PhaseExecutionPoint.BEFORE.prefix())) { executionPoint = PhaseExecutionPoint.BEFORE; phaseStart = PhaseExecutionPoint.BEFORE.prefix().length(); } else if (phase.startsWith(PhaseExecutionPoint.AFTER.prefix())) { executionPoint = PhaseExecutionPoint.AFTER; phaseStart = PhaseExecutionPoint.AFTER.prefix().length(); } else {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0)