Skip to content

Commit a85d9ec

Browse files
committed
Update to global-parent 33.
add configuration for gitlfow-maven-plugin (similar to jgitflow-maven-plugin)
1 parent 6e48d94 commit a85d9ec

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

parent_toplevel/changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="1.2.4" date="not released">
27+
<action type="update" dev="sseifert">
28+
Update to global-parent 33.
29+
</action>
30+
</release>
31+
2632
<release version="1.2.2" date="2020-04-14">
2733
<action type="update" dev="sseifert">
2834
Update to global-parent 32.

parent_toplevel/pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>io.wcm.maven</groupId>
2727
<artifactId>io.wcm.maven.global-parent</artifactId>
28-
<version>32</version>
28+
<version>33-SNAPSHOT</version>
2929
<relativePath />
3030
</parent>
3131

@@ -211,12 +211,23 @@
211211
</plugin>
212212

213213
<!-- GitFlow settings only for this POM -->
214+
<plugin>
215+
<groupId>com.amashchenko.maven.plugin</groupId>
216+
<artifactId>gitflow-maven-plugin</artifactId>
217+
<inherited>false</inherited>
218+
<configuration>
219+
<gitFlowConfig>
220+
<releaseBranchPrefix>release/${project.artifactId}-</releaseBranchPrefix>
221+
<hotfixBranchPrefix>hotfix/${project.artifactId}-</hotfixBranchPrefix>
222+
<versionTagPrefix>${project.artifactId}-</versionTagPrefix>
223+
</gitFlowConfig>
224+
</configuration>
225+
</plugin>
214226
<plugin>
215227
<groupId>external.atlassian.jgitflow</groupId>
216228
<artifactId>jgitflow-maven-plugin</artifactId>
217229
<inherited>false</inherited>
218230
<configuration>
219-
<!-- Prefix release numbers with artifactId for GIT repo with more than one released artifact -->
220231
<flowInitContext>
221232
<releaseBranchPrefix>release/${project.artifactId}-</releaseBranchPrefix>
222233
<hotfixBranchPrefix>hotfix/${project.artifactId}-</hotfixBranchPrefix>

0 commit comments

Comments
 (0)