Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executeGoal (0.26 sec)

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

        }
    
        /**
         * @param executeGoal the new invocation goal of the Mojo
         */
        public void setExecuteGoal(String executeGoal) {
            this.executeGoal = executeGoal;
        }
    
        /**
         * @return the invocation goal of the Mojo
         */
        public String getExecuteGoal() {
            return executeGoal;
        }
    
        /**
    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

            String executePhase = c.getChild("executePhase").getValue();
    
            if (executePhase != null) {
                mojo.setExecutePhase(executePhase);
            }
    
            String executeMojo = c.getChild("executeGoal").getValue();
    
            if (executeMojo != null) {
                mojo.setExecuteGoal(executeMojo);
            }
    
            String executeLifecycle = c.getChild("executeLifecycle").getValue();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <version>1.0.0+</version>
              <type>String</type>
              <description>Reference the invocation phase of the Mojo.</description>
            </field>
            <field>
              <name>executeGoal</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>Reference the invocation goal of the Mojo.</description>
            </field>
            <field>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Aug 16 14:16:22 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top