Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setExecuteLifecycle (0.14 sec)

  1. 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)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                mojo.setExecuteGoal(executeMojo);
            }
    
            String executeLifecycle = c.getChild("executeLifecycle").getValue();
    
            if (executeLifecycle != null) {
                mojo.setExecuteLifecycle(executeLifecycle);
            }
    
            mojo.setInstantiationStrategy(c.getChild("instantiationStrategy").getValue());
    
            mojo.setDescription(extractDescription(c));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top