You can catch a user input using maven-antrun-plugin. The following example show how ask current user the new project version.
change-version
validate
org.apache.maven.plugins
maven-antrun-plugin
1.7
catch-new-version
run
validate
true
org.apache.ant
ant
1.8.4
org.codehaus.mojo
versions-maven-plugin
1.3.1
set-new-version
set
validate
false
${new-user-version}
You can run this feature by calling :
mvn -N -P change-version
Some explanations :