Add chapter on building; note on how to do maven deploy

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1081977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-03-15 22:54:09 +00:00
parent 4c0ff368a2
commit 27c1c071af
2 changed files with 21 additions and 0 deletions

View File

@ -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" />

20
src/docbkx/build.xml Normal file
View File

@ -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>