Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executePhase (0.13 sec)

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

         * @return the invocation phase of the Mojo
         */
        public String getExecutePhase() {
            return executePhase;
        }
    
        /**
         * @param executePhase the new invocation phase of the Mojo
         */
        public void setExecutePhase(String executePhase) {
            this.executePhase = executePhase;
        }
    
        /**
    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/test/resources/plugin.xml

          <instantiationStrategy>per-lookup</instantiationStrategy>
          <executionStrategy>once-per-session</executionStrategy>
          <deprecated>deprecated-mojo</deprecated>
          <since>2.2</since>
          <executePhase>generate-sources</executePhase>
          <executeGoal>some-goal</executeGoal>
          <executeLifecycle>cobertura</executeLifecycle>
          <configurator>antrun</configurator>
          <parameters>
            <parameter>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/mdo/plugin.mdo

                surrounding {@code &lt;execution&gt;} element.&lt;/p>
              </description>
            </field>
            <field>
              <name>executePhase</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>Reference the invocation phase 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