-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
42 lines (42 loc) · 2.02 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
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>mijn.groep</groupId>
<artifactId>mijnParentArtifact</artifactId>
<version>4.0.0</version>
<packaging>pom</packaging>
<distributionManagement>
<snapshotRepository>
<id>local-store</id>
<url>file:///home/maintain/mvn-git-flow/local-repo</url>
</snapshotRepository>
<repository>
<id>local-store</id>
<url>file:///home/maintain/mvn-git-flow/local-repo</url>
</repository>
</distributionManagement>
<modules>
<module>subproject1</module>
<module>subproject2</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<flowInitContext>
<masterBranchName>master</masterBranchName>
<developBranchName>development</developBranchName>
<featureBranchPrefix>feature-</featureBranchPrefix>
<releaseBranchPrefix>release-</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
<versionTagPrefix>masterproject-</versionTagPrefix>
</flowInitContext>
<pushReleases>true</pushReleases>
</configuration>
</plugin>
</plugins>
</build>
</project>