Repository: incubator-unomi Updated Branches: refs/heads/master 2c5c11360 -> 55fcf3bce
UNOMI-65 Integrate jgitflow to manage feature branches Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/55fcf3bc Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/55fcf3bc Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/55fcf3bc Branch: refs/heads/master Commit: 55fcf3bce9b7d2ac2044cc1511a61f1b401e217e Parents: 2c5c113 Author: Serge Huber <[email protected]> Authored: Wed Nov 16 11:11:34 2016 +0100 Committer: Serge Huber <[email protected]> Committed: Wed Nov 16 11:11:34 2016 +0100 ---------------------------------------------------------------------- pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/55fcf3bc/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ce569ad..e6a8f4a 100644 --- a/pom.xml +++ b/pom.xml @@ -996,6 +996,26 @@ </tags> </configuration> </plugin> + <plugin> + <groupId>external.atlassian.jgitflow</groupId> + <artifactId>jgitflow-maven-plugin</artifactId> + <version>1.0-m5.1</version> + <configuration> + <flowInitContext> + <masterBranchName>production</masterBranchName> + <developBranchName>master</developBranchName> + <featureBranchPrefix>feature-</featureBranchPrefix> + <releaseBranchPrefix>release-</releaseBranchPrefix> + <hotfixBranchPrefix>hotfix-</hotfixBranchPrefix> + <versionTagPrefix>blither-</versionTagPrefix> + </flowInitContext> + <allowSnapshots>true</allowSnapshots> + <allowUntracked>true</allowUntracked> + <enableFeatureVersions>true</enableFeatureVersions> + <noFeatureBuild>true</noFeatureBuild> + <scmCommentPrefix>[jgitflow-maven-plugin] </scmCommentPrefix> + </configuration> + </plugin> </plugins> </build>
