- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getExecuteLifecycle (0.06 seconds)
-
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertEquals("per-lookup", md.getInstantiationStrategy()); assertEquals("some-goal", md.getExecuteGoal()); assertEquals("generate-sources", md.getExecutePhase()); assertEquals("cobertura", md.getExecuteLifecycle()); assertEquals("2.2", md.getSince()); assertEquals("deprecated-mojo", md.getDeprecated()); assertEquals(1, md.getRequirements().size()); assertEquals(1, md.getParameters().size());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this(); this.setPluginDescriptor(pd); this.setGoal(md.getGoal()); this.setExecuteGoal(md.getExecuteGoal()); this.setExecuteLifecycle(md.getExecuteLifecycle()); this.setExecutePhase(md.getExecutePhase()); this.setDeprecated(md.getDeprecated()); this.setLanguage(md.getLanguage()); this.setAggregator(md.isAggregator());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 21.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor(); String forkedLifecycle = mojoDescriptor.getExecuteLifecycle(); if (forkedLifecycle == null || forkedLifecycle.isEmpty()) { return; } org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 26.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0)