You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2011/02/01 02:15:29 UTC

[Hadoop Wiki] Update of "HowToSetupUbuntuBuildMachine" by GiridharanKesavan

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The "HowToSetupUbuntuBuildMachine" page has been changed by GiridharanKesavan.
http://wiki.apache.org/hadoop/HowToSetupUbuntuBuildMachine?action=diff&rev1=3&rev2=4

--------------------------------------------------

+ == How to publish snapshots ==
+ 
+ create and update your settings.xml with the following information {{{~/.m2/settings.xml}}}:{{{
+ <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
+   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
+                       http://maven.apache.org/xsd/settings-1.0.0.xsd">
+   <servers>
+     <server>
+      <id>apache.staging.https</id>
+      <username>Apache username</username>
+      <password>Apache password</password>
+     </server>
+   </servers>
+ </settings>
+ }}}
+ 
+ ant mvn-deploy should publish the artifacts to the snapshot repository.
+ 
+ 
+ 
+ 
+ 
  == upgrade packages on ubuntu machines ==
  
  sudo apt-get update < this will update the package information on the host>