Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 937 Bytes

File metadata and controls

20 lines (13 loc) · 937 Bytes

Requirements

Build

mvn clean install

Tests

  • mvn test to execute all tests

Branches

This project uses the gitflow branching model (see here and here).

It uses the jgitflow maven plugin

To start a new branch to implement a new feature type mvn jgitflow:feature-start To merge a feature branch back into develop use mvn jgitflow:feature-finish.

To create a new release from develop branch use mvn jgitflow:release-start and merge it back to develop and to master using mvn jgitflow:release-finish.

To create a hotfix using the latest commit in master branch use mvn jgitflow:hotfix-start and use mvn jgitflow:hotfix-finish to merge it back to master and develop branches.