- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for v4Phase (0.13 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
private final String v3Phase; private final String v4Phase; DefaultAlias(String v3Phase, String v4Phase) { this.v3Phase = v3Phase; this.v4Phase = v4Phase; } @Override public String v3Phase() { return v3Phase; } @Override public String v4Phase() { return v4Phase; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
} /** * A phase alias, mostly used to support the Maven 3 phases which are mapped * to dynamic phases in Maven 4. */ interface Alias { String v3Phase(); String v4Phase(); } /** * A link from a phase to another phase, consisting of a type which can be * {@link Kind#BEFORE} or {@link Kind#AFTER}, and a {@link Pointer} to * another phase.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0)