On Jan 16, 2013, at 6:17 AM, Gopal Vijayaraghavan wrote: > So, this is a question I have for everyone else. > > How do I change the hadoop version of an entire build, so that I can > name it something unique & use it in other builds in maven (-SNAPSHOT > doesn't cut it, since occasionally mvn will download the hadoop snap > poms from the remote repos). >
The following should work: ( from http://wiki.apache.org/hadoop/HowToReleasePostMavenization) $ export version=3.0.0-TEST1 $ mvn versions:set -DnewVersion=${version} -- Hitesh