You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2013/10/24 14:41:00 UTC

svn commit: r883934 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/contributors/verifying-releases.html

Author: buildbot
Date: Thu Oct 24 12:41:00 2013
New Revision: 883934

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/contributors/verifying-releases.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Oct 24 12:41:00 2013
@@ -1 +1 @@
-1535356
+1535357

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Oct 24 12:41:00 2013
@@ -1 +1 @@
-1535356
+1535357

Modified: websites/staging/isis/trunk/content/contributors/verifying-releases.html
==============================================================================
--- websites/staging/isis/trunk/content/contributors/verifying-releases.html (original)
+++ websites/staging/isis/trunk/content/contributors/verifying-releases.html Thu Oct 24 12:41:00 2013
@@ -317,20 +317,31 @@ rm -rf ~/.m2/repository/org/apache/isis
 
 <p>The build process depends on whether the artifact is of Isis core or of one of its components.</p>
 
-<p><strong>For Isis core</strong>, first download any dependencies:</p>
+<h3>Isis Core</h3>
 
-<p><code>mvn dependency:go-offline</code></p>
+<p>To build Isis core, first download any dependencies:</p>
 
-<p>Check that no Isis artifacts have yet been downloaded, ie there is no <code>~/.m2/org/repository/org/apache/isis</code> directory.  If there are, it could indicate that the release being verified incorrectly references previous versions of Isis core.
-Assuming all is ok, build using the <code>-o</code> offline flag:</p>
+<pre>
+mvn dependency:go-offline
+</pre>
 
-<p><code>mvn clean install -o</code></p>
+<p>Check that no Isis artifacts have yet been downloaded, ie there is no <code>~/.m2/org/repository/org/apache/isis</code> directory.  If there are, it could indicate that the release being verified incorrectly references previous versions of Isis core.</p>
+
+<p>Assuming all is ok, build using the <code>-o</code> offline flag:</p>
+
+<pre>
+mvn clean install -o
+</pre>
 
 <p>Confirm that the versions of the Isis artifacts now cached in your local repository are correct.</p>
 
-<p><strong>For an Isis component</strong>, build without the offline flag; Maven should pull down the component's dependencies from the Maven central repo:</p>
+<h3>Isis Component</h3>
+
+<p>To build an Isis component, build without the offline flag; Maven should pull down the component's dependencies from the Maven central repo:</p>
 
-<p><code>mvn clean install</code></p>
+<pre>
+mvn clean install
+</pre>
 
 <p>Confirm that the versions of the Isis artifacts now cached in your local repository are correct (both those pulled down from Maven central repo, as well as those of the component built locally).</p>