Skip to content

Commit

Permalink
add gitflow plugin for simplified releases
Browse files Browse the repository at this point in the history
  • Loading branch information
robo-w committed May 24, 2024
1 parent a0ea189 commit 3103da4
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -410,19 +410,35 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>

<!-- For JUnit Tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.2.5</version>
<configuration>
<parallel>classes</parallel>
<threadCount>4</threadCount>
</configuration>
</plugin>

<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.21.0</version>
<configuration>
<gitFlowConfig>
<productionBranch>master</productionBranch>
<developmentBranch>dev</developmentBranch>
<featureBranchPrefix>feature/</featureBranchPrefix>
<releaseBranchPrefix>release/</releaseBranchPrefix>
<versionTagPrefix>v</versionTagPrefix>
</gitFlowConfig>
<postReleaseGoals/>
<commitMessagePrefix>[RELEASE] </commitMessagePrefix>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 3103da4

Please sign in to comment.