- Sort Score
- Result 10 results
- Languages All
Results 11 - 18 of 18 for setPhases (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.3K 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) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java
} public static MojoDescriptor createMojoDescriptor(String phaseName, boolean threadSafe) { final MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPhase(phaseName); final PluginDescriptor descriptor = new PluginDescriptor(); Plugin plugin = new Plugin(); plugin.setGroupId("org.apache.maven.test.MavenExecutionPlan");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.6K bytes - Viewed (0) -
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) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (deprecated != null) { mojo.setDeprecated(deprecated.getValue()); } String phase = c.getChild("phase").getValue(); if (phase != null) { mojo.setPhase(phase); } String executePhase = c.getChild("executePhase").getValue(); if (executePhase != null) { mojo.setExecutePhase(executePhase); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K 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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
String src = source.getPhase(); if (src != null) { if (sourceDominant || target.getPhase() == null) { target.setPhase(src); target.setLocation("phase", source.getLocation("phase")); } } } protected void mergePluginExecution_Goals(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0)