This is an automated email from the ASF dual-hosted git repository.
yasserzamani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git
The following commit(s) were added to refs/heads/master by this push:
new f454980 disable maven download progress indication to decrease travis
log size
new a339bd4 Merge branch 'master' of https://github.com/apache/struts
f454980 is described below
commit f454980b89103d1629d321c324362a77d8010877
Author: Yasser Zamani <[email protected]>
AuthorDate: Fri Dec 14 00:01:56 2018 +0330
disable maven download progress indication to decrease travis log size
See also: https://stackoverflow.com/a/21638827
---
.travis.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index b25621a..ae39403 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,14 +10,14 @@ jdk:
install: true
script:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
- ./mvnw test -DskipAssembly;
+ ./mvnw test -DskipAssembly -B;
else
- ./mvnw test -DskipAssembly -Dupdate-impact;
+ ./mvnw test -DskipAssembly -Dupdate-impact -B;
fi;
after_success:
# TODO delete following if statement after fix of
https://github.com/cobertura/cobertura/issues/271
- if [ "$TRAVIS_JDK_VERSION" == "openjdk8" ] || [ "$TRAVIS_JDK_VERSION" ==
"oraclejdk8" ]; then
- mvn cobertura:cobertura
org.eluder.coveralls:coveralls-maven-plugin:report -Ptravis-coveralls
-DskipAssembly;
+ mvn cobertura:cobertura
org.eluder.coveralls:coveralls-maven-plugin:report -Ptravis-coveralls
-DskipAssembly -B;
else
echo "Not reporting coverage for $TRAVIS_JDK_VERSION due to
incompatibility or to save performance";
fi;