You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2015/08/17 20:27:15 UTC

hbase git commit: HBASE-13914 Minor improvements to dev-support/publish_hbase_website.sh

Repository: hbase
Updated Branches:
  refs/heads/master ad2c7c633 -> f343a1d43


HBASE-13914 Minor improvements to dev-support/publish_hbase_website.sh


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f343a1d4
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f343a1d4
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f343a1d4

Branch: refs/heads/master
Commit: f343a1d43881071492da2a4d5c686772cf094f03
Parents: ad2c7c6
Author: Nick Dimiduk <nd...@apache.org>
Authored: Mon Aug 17 11:25:24 2015 -0700
Committer: Nick Dimiduk <nd...@apache.org>
Committed: Mon Aug 17 11:27:19 2015 -0700

----------------------------------------------------------------------
 dev-support/publish_hbase_website.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f343a1d4/dev-support/publish_hbase_website.sh
----------------------------------------------------------------------
diff --git a/dev-support/publish_hbase_website.sh b/dev-support/publish_hbase_website.sh
index d58fb61..2a43a1f 100755
--- a/dev-support/publish_hbase_website.sh
+++ b/dev-support/publish_hbase_website.sh
@@ -81,6 +81,8 @@ if [ ! -d $GIT_DIR -o ! -d $SVN_DIR ]; then
   exit 1
 fi
 
+export MAVEN_OPTS=${MAVEN_OPTS:-"-Xmx3g -XX:MaxPermSize=256m"}
+
 cd $GIT_DIR
 
 # Get the latest
@@ -93,7 +95,7 @@ if [ $INTERACTIVE ]; then
     read -p "Build the site? (y/n)" yn
     case $yn in
         [Yy]* ) 
-          mvn clean package javadoc:aggregate post-site site:stage -DskipTests
+          mvn clean package javadoc:aggregate post-site site:stage -DskipTests -Dcheckstyle.skip
           status=$?
           if [ $status -ne 0 ]; then
             echo "The website does not build. Aborting."
@@ -106,7 +108,7 @@ if [ $INTERACTIVE ]; then
     esac
 else
   echo "Building the site in auto mode."
-  mvn clean package javadoc:aggregate post-site site:stage -DskipTests
+  mvn clean package javadoc:aggregate post-site site:stage -DskipTests -Dcheckstyle.skip
   status=$?
   if [ $status != 0 ]; then
     echo "The website does not build. Aborting."