You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ro...@apache.org on 2021/01/12 12:26:28 UTC

svn commit: r45377 - /dev/jackrabbit/check-release.sh

Author: rombert
Date: Tue Jan 12 12:26:28 2021
New Revision: 45377

Log:
Use batch mode when verifying the Maven build

This makes the generated log file easier to read, otherwise recent
versions of Maven will use escape sequences to write colored output.

Modified:
    dev/jackrabbit/check-release.sh

Modified: dev/jackrabbit/check-release.sh
==============================================================================
--- dev/jackrabbit/check-release.sh (original)
+++ dev/jackrabbit/check-release.sh Tue Jan 12 12:26:28 2021
@@ -226,7 +226,7 @@ info "6. Build the release candidate"
 info ""
 info "   Running the Maven build: mvn clean verify $MVN_ARGS"
 info ""
-if (cd $ZIPDIR; exec mvn clean verify $MVN_ARGS) 2>> "$LOGFILE" 1>&2; then
+if (cd $ZIPDIR; exec mvn --batch-mode clean verify $MVN_ARGS) 2>> "$LOGFILE" 1>&2; then
   info "   OK: mvn clean verify $MVN_ARGS"
 else
   error "  NOT OK: mvn clean verify $MVN_ARGS"