Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PhaseExecutionPoint (1.15 sec)

  1. 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 phase
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. 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)
Back to top