Author: buildbot
Date: Tue Aug 11 22:17:55 2015
New Revision: 961531
Log:
Staging update by buildbot for mahout
Modified:
websites/staging/mahout/trunk/content/ (props changed)
websites/staging/mahout/trunk/content/developers/buildingmahout.html
Propchange: websites/staging/mahout/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 11 22:17:55 2015
@@ -1 +1 @@
-1694672
+1695382
Modified: websites/staging/mahout/trunk/content/developers/buildingmahout.html
==============================================================================
--- websites/staging/mahout/trunk/content/developers/buildingmahout.html
(original)
+++ websites/staging/mahout/trunk/content/developers/buildingmahout.html Tue
Aug 11 22:17:55 2015
@@ -263,13 +263,24 @@
<div id="content-wrap" class="clearfix">
<div id="main">
- <h1 id="building-mahout-from-source">Building Mahout from source</h1>
-<h2 id="prerequisites">Prerequisites</h2>
+ <style type="text/css">
+/* The following code is added by mdx_elementid.py
+ It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+ visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="building-mahout-from-source">Building Mahout from source<a
class="headerlink" href="#building-mahout-from-source" title="Permanent
link">¶</a></h1>
+<h2 id="prerequisites">Prerequisites<a class="headerlink"
href="#prerequisites" title="Permanent link">¶</a></h2>
<ul>
<li>Java JDK 1.7</li>
-<li>Apache Maven</li>
+<li>Apache Maven 3.3.3</li>
</ul>
-<h2 id="getting-the-source-code">Getting the source code</h2>
+<h2 id="getting-the-source-code">Getting the source code<a class="headerlink"
href="#getting-the-source-code" title="Permanent link">¶</a></h2>
<p>Checkout the sources from the <a
href="https://github.com/apache/mahout">Mahout GitHub repository</a>
either via</p>
<div class="codehilite"><pre><span class="n">git</span> <span
class="n">clone</span> <span class="n">git</span><span class="p">@</span><span
class="n">github</span><span class="p">.</span><span class="n">com</span><span
class="p">:</span><span class="n">apache</span><span class="o">/</span><span
class="n">mahout</span><span class="p">.</span><span class="n">git</span>
@@ -281,12 +292,12 @@ either via</p>
</pre></div>
-<h2 id="hadoop-version">Hadoop version</h2>
+<h2 id="hadoop-version">Hadoop version<a class="headerlink"
href="#hadoop-version" title="Permanent link">¶</a></h2>
<p>Mahout code depends on hadoop-client artifact, with the default version
2.4.1. To build Mahout against to a
different hadoop version, hadoop.version property should be set accordingly
and passed to the build command.
Hadoop1 clients would additionally require hadoop1 profile to be activated.</p>
<p>The build lifecycle is illustrated below. </p>
-<h2 id="compiling">Compiling</h2>
+<h2 id="compiling">Compiling<a class="headerlink" href="#compiling"
title="Permanent link">¶</a></h2>
<p>Compile Mahout using standard maven commands</p>
<div class="codehilite"><pre><span class="c"># With hadoop-2.4.1
dependency</span>
<span class="n">mvn</span> <span class="n">clean</span> <span
class="n">compile</span>
@@ -296,7 +307,7 @@ Hadoop1 clients would additionally requi
</pre></div>
-<h2 id="packaging">Packaging</h2>
+<h2 id="packaging">Packaging<a class="headerlink" href="#packaging"
title="Permanent link">¶</a></h2>
<p>Mahout has an extensive test suite which takes some time to run. If you
just want to build Mahout, skip the tests like this</p>
<div class="codehilite"><pre><span class="c"># With hadoop-2.4.1
dependency</span>
<span class="n">mvn</span> <span class="o">-</span><span
class="n">DskipTests</span><span class="p">=</span><span class="nb">true</span>
<span class="n">clean</span> <span class="n">package</span>