You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/03/15 23:54:10 UTC

svn commit: r1081977 - in /hbase/trunk/src/docbkx: book.xml build.xml

Author: stack
Date: Tue Mar 15 22:54:09 2011
New Revision: 1081977

URL: http://svn.apache.org/viewvc?rev=1081977&view=rev
Log:
Add chapter on building; note on how to do maven deploy

Added:
    hbase/trunk/src/docbkx/build.xml
Modified:
    hbase/trunk/src/docbkx/book.xml

Modified: hbase/trunk/src/docbkx/book.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/book.xml?rev=1081977&r1=1081976&r2=1081977&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/book.xml (original)
+++ hbase/trunk/src/docbkx/book.xml Tue Mar 15 22:54:09 2011
@@ -68,6 +68,7 @@
   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="upgrading.xml" />
   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="configuration.xml" />
   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="shell.xml" />
+  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="build.xml" />
 
 
 

Added: hbase/trunk/src/docbkx/build.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/build.xml?rev=1081977&view=auto
==============================================================================
--- hbase/trunk/src/docbkx/build.xml (added)
+++ hbase/trunk/src/docbkx/build.xml Tue Mar 15 22:54:09 2011
@@ -0,0 +1,20 @@
+<?xml version="1.0"?>
+    <chapter xml:id="build"
+      version="5.0" xmlns="http://docbook.org/ns/docbook"
+      xmlns:xlink="http://www.w3.org/1999/xlink"
+      xmlns:xi="http://www.w3.org/2001/XInclude"
+      xmlns:svg="http://www.w3.org/2000/svg"
+      xmlns:m="http://www.w3.org/1998/Math/MathML"
+      xmlns:html="http://www.w3.org/1999/xhtml"
+      xmlns:db="http://docbook.org/ns/docbook">
+    <title>Building HBase</title>
+    <section xml:id="mvn_repo">
+        <para>Follow the instructions at <link xlink:href="http://www.apache.org/dev/publishing-maven-artifacts.html">Publishing Maven Artifacts</link>.
+            The 'trick' to makiing it all work is answering the questions put to you by the mvn release plugin properly,
+            making sure it is using the actual branch,
+            and finally, before doing the mvn release:perform,
+            VERY IMPORTANT, hand edit the release.properties file that was put under HBASE_HOME by the previous step, release:perform. You need to edit it to make it point at right locations in SVN.
+        </para>
+    </section>
+          
+    </chapter>