Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExecuteLifecycle (0.27 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            if (md.getExecutePhase() != null && !md.getExecutePhase().isEmpty()) {
                // forked phase
                if (md.getExecuteLifecycle() != null && !md.getExecuteLifecycle().isEmpty()) {
                    buff.append('[');
                    buff.append(md.getExecuteLifecycle());
                    buff.append(']');
                }
                buff.append(md.getExecutePhase());
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top