Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setExecutePhase (0.37 sec)

  1. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            if (phase != null) {
                mojo.setPhase(phase);
            }
    
            String executePhase = c.getChild("executePhase").getValue();
    
            if (executePhase != null) {
                mojo.setExecutePhase(executePhase);
            }
    
            String executeMojo = c.getChild("executeGoal").getValue();
    
            if (executeMojo != null) {
                mojo.setExecuteGoal(executeMojo);
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top