- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for executionPoint (0.14 seconds)
-
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;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.3K bytes - Click Count (0) -
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>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 5.6K bytes - Click Count (0) -
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) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 2.2K bytes - Click Count (0) -
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) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 8.5K bytes - Click Count (0)