Git Flow Process for versioning AEM releases

Maven plugin needed for this set up: <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.14.0</version> <configuration> <installProject>false</installProject> <verbose>false</verbose> <keepBranch>true</keepBranch> <skipTestProject>true</skipTestProject> <gitFlowConfig> <productionBranch>master</productionBranch> <developmentBranch>develop</developmentBranch> <featureBranchPrefix>feature/</featureBranchPrefix> <releaseBranchPrefix>release/</releaseBranchPrefix> <hotfixBranchPrefix>hotfix/</hotfixBranchPrefix> <versionTagPrefix></versionTagPrefix> <origin>origin</origin> </gitFlowConfig> <commitMessages> </commitMessages> </configuration> </plugin> Make…