Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rsion in place with my own Maven CI friendly versioning improvements.
  • Loading branch information
mmusenbr committed Oct 15, 2021
1 parent 39b0e65 commit 8fae84d
Show file tree
Hide file tree
Showing 91 changed files with 119 additions and 103 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.16.0.mmusenbr (2021-10-13)

* Forked from [com.amashchenko.maven.plugin.gitflow-maven-plugin](https://github.com/aleksandr-m/gitflow-maven-plugin) to [com.musenbrock.gitflow-maven-plugin](https://github.com/mmusenbr/gitflow-maven-plugin)

## v1.16.0 (2021-03-23)

* Fixed wrong incrementing of feature name - [#288](https://github.com/aleksandr-m/gitflow-maven-plugin/issues/288)
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Git-Flow Maven Plugin

[![verify](https://github.com/aleksandr-m/gitflow-maven-plugin/workflows/verify/badge.svg)](https://github.com/aleksandr-m/gitflow-maven-plugin/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.amashchenko.maven.plugin/gitflow-maven-plugin/badge.svg?subject=Maven%20Central)](https://maven-badges.herokuapp.com/maven-central/com.amashchenko.maven.plugin/gitflow-maven-plugin/)
[![verify](https://github.com/mmusenbr/gitflow-maven-plugin/workflows/verify/badge.svg)](https://github.com/mmusenbr/gitflow-maven-plugin/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.musenbrock/gitflow-maven-plugin/badge.svg?subject=Maven%20Central)](https://maven-badges.herokuapp.com/maven-central/com.musenbrock/gitflow-maven-plugin/)
[![License](https://img.shields.io/badge/License-Apache%20License%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)

The Maven plugin that supports various Git workflows, including Vincent Driessen's [successful Git branching model](https://nvie.com/posts/a-successful-git-branching-model/) and [GitHub Flow](https://guides.github.com/introduction/flow/).
Expand All @@ -10,6 +10,10 @@ Currently a Java implementation of Git version control system [JGit](https://git

This plugin runs Git and Maven commands from the command line ensuring that all Git features work properly.

## Fork

The plugin was forked from [aleksandr-m/gitflow-maven-plugin](https://github.com/aleksandr-m/gitflow-maven-plugin). The reason was to add support for additional Maven CI friendly options, which are described below.

## Changelog

See what's changed - [CHANGELOG](CHANGELOG.md)
Expand All @@ -21,9 +25,9 @@ The plugin is available from Maven Central.
<build>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.16.0</version>
<version>1.16.0.mmusenbr</version>
<configuration>
<!-- optional configuration -->
</configuration>
Expand Down
15 changes: 9 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>gitflow-maven-plugin</name>
Expand All @@ -39,14 +39,17 @@
<developer>
<name>Aleksandr Mashchenko</name>
</developer>
<developer>
<name>Michael Musenbrock</name>
</developer>
</developers>

<url>https://github.com/aleksandr-m/gitflow-maven-plugin</url>
<url>https://github.com/mmusenbr/gitflow-maven-plugin</url>

<scm>
<url>https://github.com/aleksandr-m/gitflow-maven-plugin</url>
<connection>scm:git:git@github.com:aleksandr-m/gitflow-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:aleksandr-m/gitflow-maven-plugin.git</developerConnection>
<url>https://github.com/mmusenbr/gitflow-maven-plugin</url>
<connection>scm:git:git@github.com:mmusenbr/gitflow-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:mmusenbr/gitflow-maven-plugin.git</developerConnection>
</scm>

<distributionManagement>
Expand All @@ -63,7 +66,7 @@
</distributionManagement>

<properties>
<revision>1.16.0</revision>
<revision>1.16.0.mmusenbr</revision>
<changelist>-SNAPSHOT</changelist>

<java.version>1.7</java.version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-2-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-2-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-test-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-3-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-3-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-ISSUE-288-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-finish-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-test-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-start-2-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-start-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-test-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/feature-start-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-2-it/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0.1</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-2-it/expected-release-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-2-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-4-it/expected-development-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-4-it/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-4-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-5-it/expected-development-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-5-it/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-5-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it-3/child1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<version>1.0</version>
</parent>
Expand Down
4 changes: 2 additions & 2 deletions src/it/hotfix-finish-it-3/child2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<version>1.0</version>
</parent>
Expand All @@ -13,7 +13,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test-child1</artifactId>
<version>${test.project.version}</version>
<type>pom</type>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it-3/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0.1</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it-3/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0.1</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it/expected-release-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.1-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-finish-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-start-2-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-start-2-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-start-it/expected-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>3.0.0</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/hotfix-start-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/init-giflow-config-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/release-finish-2-it/expected-development-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/release-finish-2-it/expected-production-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/release-finish-2-it/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.3</version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/release-finish-3-it/expected-development-pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amashchenko.maven.plugin</groupId>
<groupId>com.musenbrock</groupId>
<artifactId>gitflow-maven-test</artifactId>
<packaging>pom</packaging>
<version>0.0.4-SNAPSHOT</version>
Expand Down
Loading

0 comments on commit 8fae84d

Please sign in to comment.