Plugin Documentation

Goals available for this plugin:

GoalDescription
ggitflow:feature-finishMerges a feature branch back into the develop.
ggitflow:feature-startCreates a new feature branch off of the develop branch.
ggitflow:hotfix-finishMerges a hotfix branch back into the develop and master branch and then creates a tag for the hotfix on master.
ggitflow:hotfix-startCreates a new hotfix branch off of the master branch.
ggitflow:release-finishMerges a release branch back into the develop and master branch and then creates a tag for the release on master.
ggitflow:release-startCreates a new release branch off of the develop branch.
ggitflow:support-startCreates a new support branch from a specific commit on the master branch.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven2.0
JDK1.5
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>com.dkirrane.maven.plugins</groupId>
          <artifactId>ggitflow-maven-plugin</artifactId>
          <version>1.5-SNAPSHOT</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.dkirrane.maven.plugins</groupId>
        <artifactId>ggitflow-maven-plugin</artifactId>
        <version>1.5-SNAPSHOT</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"