You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by sh...@apache.org on 2016/11/16 13:26:37 UTC

[3/5] incubator-unomi git commit: UNOMI-65 Integrate jgitflow to manage feature branches

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/UNOMI-28-ES-2-X-UPGRADE
Commit: 55fcf3bce9b7d2ac2044cc1511a61f1b401e217e
Parents: 2c5c113
Author: Serge Huber <sh...@apache.org>
Authored: Wed Nov 16 11:11:34 2016 +0100
Committer: Serge Huber <sh...@apache.org>
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>