You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to customize commit message as follow :
<commitMessages>
<hotfixStartMessage>update versions for hotfix: ${project.version}</hotfixStartMessage>
<hotfixFinishMessage>update for next development version: ${project.version}</hotfixFinishMessage>
<releaseStartMessage>update versions for release: ${project.version}</releaseStartMessage>
<releaseFinishMessage>update for next development version: ${project.version}</releaseFinishMessage>
<tagHotfixMessage>tag hotfix: ${project.version}</tagHotfixMessage>
<tagReleaseMessage>tag release: ${project.version}</tagReleaseMessage>
</commitMessages>
But, as described in documentation:
${project.version} can be used any changes to version introduced by this goal won't be reflected in a commit message for this goal.
So: how can I put information on commit message about version?
The text was updated successfully, but these errors were encountered:
NB : The default value of this property could be X.Y.(Z+1)-SNAPSHOT and can also be customize when user launch mvn command with -Dgitflow.nextVersion= ... (see issue #42 )
I would like to customize commit message as follow :
But, as described in documentation:
So: how can I put information on commit message about version?
The text was updated successfully, but these errors were encountered: