LifecycleMappings

Configuration of custom lifecycle mappings for the plugin.

<lifecycles>
  <lifecycle>
    <id/>
    <phases>
      <phase>
        <id/>
        <executions>
          <execution>
            <configuration/>
            <goals/>
          </execution>
        </executions>
        <configuration/>
      </phase>
    </phases>
  </lifecycle>
</lifecycles>

lifecycles

Root element of the lifecycle.xml file.

Element Description
lifecycle List No description.

lifecycle

A custom lifecycle mapping definition.

Element Description
id The ID of this lifecycle, for identification in the mojo descriptor.
phases The phase mappings for this lifecycle.

phase

A phase mapping definition.

Element Description
id The ID of this phase, eg generate-sources.
executions The goals to execute within the phase.
configuration Configuration to pass to all goals run in this phase.

execution

A set of goals to execute.

Element Description
configuration Configuration to pass to the goals.
goals The goals to execute.