- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 21 for v3phases (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
DefaultAlias(String v3Phase, String v4Phase) { this.v3Phase = v3Phase; this.v4Phase = v4Phase; } @Override public String v3Phase() { return v3Phase; } @Override public String v4Phase() { return v4Phase; } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 28 15:21:19 GMT 2025 - 8.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java
Map<String, String> aliases = lifecycle.getDelegate().aliases().stream() .collect(Collectors.toMap(a -> a.v3Phase(), a -> a.v4Phase())); if (aliases.containsKey(lifecyclePhase)) { lifecyclePhase = PhaseId.of(aliases.get(lifecyclePhase)).phase(); } boolean passed = false; for (String phase : lifecycle.getPhases()) { boolean include = true;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 8.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java
Map<String, LifecyclePhase> lphases = getLifecyclePhases(); if (lphases == null) { return null; } if (lphases.isEmpty()) { return Collections.emptyMap(); } Map<String, String> phases = new LinkedHashMap<>(); for (Map.Entry<String, LifecyclePhase> e : lphases.entrySet()) { phases.put(e.getKey(), e.getValue().toString()); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseExecutionPoint.java
*/ BEFORE("before:"), /** * Execution is the execution of the phase proper. Failure of any {@code #AT} dynamic phase execution will fail * the phase. Any {@link #AFTER} phases will still be executed. */ AT(""), /** * Guaranteed execution dynamic phases on completion of the static phase. All {@code #AFTER} dynamic phases willCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/PluginLifecycle.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java
Map<String, LifecyclePhase> phases = getLifecyclePhases(lifecycleId); if (phases != null) { Lifecycle lifecycle = new Lifecycle(); lifecycle.setId(lifecycleId); lifecycle.setLifecyclePhases(phases); lifecycleMap.put(lifecycleId, lifecycle); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4K bytes - Click Count (0) -
impl/maven-core/src/site/apt/lifecycles.apt.vm
<<<default>>> lifecycle is defined only with phases, <<without>> any associated plugin binding: plugins bindings for this lifecycle are {{{./default-bindings.html}defined separately for each packaging}}: %{snippet|id=default|file=${project.basedir}/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java} * <<<clean>>> Lifecycle <<<clean>>> lifecycle phases are defined with their plugins bindings:
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 08 22:14:18 GMT 2025 - 1.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/providers/AbstractLifecycleProvider.java
/** * Base lifecycle provider. */ public abstract class AbstractLifecycleProvider implements Provider<Lifecycle> { private final Lifecycle lifecycle; protected AbstractLifecycleProvider(String id, String[] phases, String[] pluginBindings) { HashMap<String, LifecyclePhase> defaultBindings = null; if (pluginBindings != null) { final int len = pluginBindings.length; if (len < 2 || len % 2 != 0) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseComparator.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.lifecycle.internal; import java.util.Comparator; import java.util.List; /** * Compares phases within the context of a specific lifecycle with secondary sorting based on the {@link PhaseId}. */ public class PhaseComparator implements Comparator<String> { /** * The lifecycle phase ordering. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 2.2K bytes - Click Count (0)