You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/06/21 15:14:01 UTC

[05/24] git commit: updated refs/heads/master to 6fd49e4

Send output to oblivion because of this message in travis log view: This log is too long to be displayed. Please reduce the verbosity of your build or download the raw log.

Signed-off-by: Daan Hoogland <da...@onecht.net>


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

Branch: refs/heads/master
Commit: f0e1c8908bbdcd22490582aeade197df65c49334
Parents: 880f116
Author: Rafael da Fonseca <rs...@gmail.com>
Authored: Thu Jun 18 22:26:19 2015 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Sun Jun 21 15:13:24 2015 +0200

----------------------------------------------------------------------
 tools/travis/before_install.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f0e1c890/tools/travis/before_install.sh
----------------------------------------------------------------------
diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh
index dd90ec6..770be61 100755
--- a/tools/travis/before_install.sh
+++ b/tools/travis/before_install.sh
@@ -89,9 +89,10 @@ sudo pip install texttable > /dev/null
 RETRY_COUNT=3
 
 #Resolve plugins first
+echo -e "\nDownloading Plugin dependencies"
 for ((i=0;i<$RETRY_COUNT;i++))
 do
- mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins
+ mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins > /dev/null
  if [[ $? -eq 0 ]]; then
    break;
  fi
@@ -100,10 +101,11 @@ done
 #Resolve remaining deps
 cd tools/travis
 ./downloadDeps.sh 2> /dev/null
+echo -e "\nDownloading Project dependencies"
 
 for ((i=0;i<$RETRY_COUNT;i++))
 do
- mvn org.apache.maven.plugins:maven-dependency-plugin:resolve
+ mvn org.apache.maven.plugins:maven-dependency-plugin:resolve > /dev/null
  if [[ $? -eq 0 ]]; then
    break;
  fi