- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getPhases (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
} if (lifecycleOverlay == null) { throw new LifecycleNotFoundException(forkedLifecycle); } for (Phase phase : lifecycleOverlay.getPhases()) { String phaseId = defaultLifecycles.getLifeCycles().stream() .flatMap(l -> l.getDelegate().aliases().stream()) .filter(a -> phase.getId().equals(a.v3Phase()))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 20.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
result.setConfiguration(XmlNode.newInstance(executionId + "-" + goal)); result.setMojoDescriptor(mojoDescriptor); result.setLifecyclePhase(mojoDescriptor.getPhase()); return result; } public static MojoDescriptor createMojoDescriptor(String phaseName) { return createMojoDescriptor(phaseName, false); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this.setDependencyResolutionRequired(md.getDependencyResolution()); this.setComponentConfigurator(md.getConfigurator()); this.setInheritedByDefault(md.isInheritedByDefault()); this.setPhase(md.getPhase()); this.setOnlineRequired(md.isOnlineRequired()); this.setProjectRequired(md.isProjectRequired()); this.setSince(md.getSince()); this.setThreadSafe(true);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
val = interpolate(org); if (org != val) { execution.setId(val); } // Phase org = execution.getPhase(); val = interpolate(org); if (org != val) { execution.setPhase(val); } // Goals visit(execution.getGoals());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0)