I am using maven-release-plugin on a multi-module project with the following layout:
ROOT/
+ parent
+ module1
+ module2
In the parent's pom, the child modules configured using modules element. Each one of the projects are configured to use the plugin with basic configuration and a tag base for each. I have the following problems:
When I run
mvn release:prepareonparent, after the line that saysChecking for snapshot dependencies ..., I receive no prompt to enter the versions. If I pressEnterfor the number of questions it requires answer, it continues. Why do not I receive prompts on the screen? (The same thing happens if run with-DdryRun=true)After running
mvn release:prepare(with or without-DdryRun=true), therelease:prepareis SKIPPED for the child modules.
I am using the basic configuration on the plugin's guide. I'd be thankful for any ideas or clues of what's wrong.