Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setExecuteGoal (1.46 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        public MojoDescriptor(PluginDescriptor pd, org.apache.maven.api.plugin.descriptor.MojoDescriptor md) {
            this();
            this.setPluginDescriptor(pd);
            this.setGoal(md.getGoal());
            this.setExecuteGoal(md.getExecuteGoal());
            this.setExecuteLifecycle(md.getExecuteLifecycle());
            this.setExecutePhase(md.getExecutePhase());
            this.setDeprecated(md.getDeprecated());
    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.setExecutePhase(executePhase);
            }
    
            String executeMojo = c.getChild("executeGoal").getValue();
    
            if (executeMojo != null) {
                mojo.setExecuteGoal(executeMojo);
            }
    
            String executeLifecycle = c.getChild("executeLifecycle").getValue();
    
            if (executeLifecycle != null) {
                mojo.setExecuteLifecycle(executeLifecycle);
    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