Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executionPoint (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseId.java

                executionPoint = PhaseExecutionPoint.BEFORE;
                phaseStart = PhaseExecutionPoint.BEFORE.prefix().length();
            } else if (phase.startsWith(PhaseExecutionPoint.AFTER.prefix())) {
                executionPoint = PhaseExecutionPoint.AFTER;
                phaseStart = PhaseExecutionPoint.AFTER.prefix().length();
            } else {
                executionPoint = PhaseExecutionPoint.AT;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

         */
        public String getEffectiveId() {
            if (executionPoint == null) {
                if (priority == 0) {
                    return id;
                }
                return id + '[' + priority + ']';
            }
            if (priority == 0) {
                return executionPoint + ':' + id;
            }
            return executionPoint + ':' + id + '[' + priority + ']';
        }
    ]]></code>
            </codeSegment>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseComparator.java

        @Override
        public int compare(String o1, String o2) {
            PhaseId p1 = PhaseId.of(o1);
            PhaseId p2 = PhaseId.of(o2);
            int i1 = lifecyclePhases.indexOf(p1.executionPoint().prefix() + p1.phase());
            int i2 = lifecyclePhases.indexOf(p2.executionPoint().prefix() + p2.phase());
            if (i1 == -1 && i2 == -1) {
                // unknown phases, leave in existing order
                return 0;
            }
            if (i1 == -1) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                Map<String, Map<PhaseId, List<MojoExecution>>> mappings, String phase) {
            if (phase != null) {
                PhaseId id = PhaseId.of(phase);
                return mappings.get(id.executionPoint().prefix() + id.phase());
            }
            return null;
        }
    
        private void addMojoExecution(
                Map<PhaseId, List<MojoExecution>> phaseBindings, MojoExecution mojoExecution, PhaseId phaseId) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top