Goals available for this plugin:
Goal | Description |
---|---|
ggitflow:feature-finish | Merges a feature branch back into the develop. |
ggitflow:feature-start | Creates a new feature branch off of the develop branch. |
ggitflow:hotfix-finish | Merges a hotfix branch back into the develop and master branch and then creates a tag for the hotfix on master. |
ggitflow:hotfix-start | Creates a new hotfix branch off of the master branch. |
ggitflow:release-finish | Merges a release branch back into the develop and master branch and then creates a tag for the release on master. |
ggitflow:release-start | Creates a new release branch off of the develop branch. |
ggitflow:support-start | Creates a new support branch from a specific commit on the master branch. |
The following specifies the minimum requirements to run this Maven plugin:
Maven | 2.0 |
JDK | 1.5 |
Memory | No minimum requirement. |
Disk Space | No minimum requirement. |
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"