Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.
The "HowToReleasePostMavenization" page has been changed by Arun C Murthy: http://wiki.apache.org/hadoop/HowToReleasePostMavenization?action=diff&rev1=22&rev2=23 # make the distribution (do not use 'clean' or -Dtar, for now do not use install either since it breaks -Psrc) $ mvn package site deploy -Psrc -Pnative -Pdist gpg:sign -Dmaven.test.skip.exec=true -Dcontainer-executor.conf.dir=/etc/hadoop -Dgpg.passphrase=<passphrase> - # remove ivy cache and build MR1 jars, copy them to the distribution + # remove ivy cache and build MR1 jars, copy them to the distribution (until MR1 and GridMixv3 is mavenized) $ rm -rf ~/.ivy2/cache/org.apache.hadoop* $ cd hadoop-mapreduce-project $ ant veryclean all-jars -Dversion=$version -Dresolvers=internal + # cp - $ for i in `find build -name *.jar | grep hadoop | grep -v ivy`; do echo $i; cp $i ../hadoop-dist/target/hadoop-0.23.0/; done + $ for i in `find build -name *.jar | grep hadoop | grep -v ivy | grep -v examples | grep -v tools`; do echo $i; cp $i ../hadoop-dist/target/hadoop-0.23.0/; done $ cd .. # stage site
