Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getExecuteLifecycle (0.06 sec)

  1. 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());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. 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());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  3. 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;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        }
                    }
    
                    return plan;
    
                } else if (phase != null && !phase.isEmpty()) {
                    String forkedLifecycle = mojoDescriptor.getExecuteLifecycle();
                    Lifecycle lifecycle;
                    if (forkedLifecycle != null && !forkedLifecycle.isEmpty()) {
                        org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top