-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (54 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>herd</groupId>
<artifactId>chain</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>CeylonChain</name>
<!--
<distributionManagement>
<snapshotRepository>
<id>maven2-snapshot-repository</id>
<name>Maven2 Snapshot Repository</name>
<url>file:////tmp/mvn/snapshot</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
<repository>
<id>maven2-release-repository</id>
<name>Maven2 release Repository</name>
<url>file:////tmp/mvn/release</url>
</repository>
</distributionManagement>
-->
<scm>
<url>https://github.com/someth2say/ceylonChain</url>
<connection>https://github.com/someth2say/ceylonChain</connection>
<developerConnection>https://github.com/someth2say/ceylonChain</developerConnection>
<!--<tag>parent-0.0.1</tag>-->
</scm>
<build>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushFeatures>true</pushFeatures>
<pushReleases>true</pushReleases>
<pushHotfixes>true</pushHotfixes>
<releaseBranchVersionSuffix>RC</releaseBranchVersionSuffix>
<flowInitContext>
<masterBranchName>master</masterBranchName>
<developBranchName>develop</developBranchName>
<featureBranchPrefix>feature/</featureBranchPrefix>
<releaseBranchPrefix>release/</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix/</hotfixBranchPrefix>
</flowInitContext>
<username>${git.user}</username>
<password>${git.password}</password>
</configuration>
</plugin>
</plugins>
</build>
</project>