I am new to using the jgitflow-maven-plugin
. My project has many different modules that depend on each other. On my develop
branch all the submodules have version 1.0.0-SNAPSHOT.
Executing the release-start
goal fails because of the snapshot dependencies. I found that I can use the allowSnapshots=true
option to get past this, but I'm not sure if this is the correct way of dealing with it.
What is the correct way of working with jgitflow and submodules?