From 117a695161b004b9dcad274bd814151aa31464a7 Mon Sep 17 00:00:00 2001 From: Arthur Baars Date: Fri, 20 Sep 2019 12:41:36 -0700 Subject: [PATCH] maven.yml: add `-B` to the maven command line Add the `-B` (batch mode) to the `mvn` command line. In interactive mode maven prints many lines of download progress output filling the console output with thousands of useless lines. Ideally the github-actions console would interpret `\r' as carriage return (go back to the beginning of the current line and overwrite it). As long as that is not the case using `-B` is a good workaround. --- ci/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/maven.yml b/ci/maven.yml index e50300b..dbc347f 100644 --- a/ci/maven.yml +++ b/ci/maven.yml @@ -14,4 +14,4 @@ jobs: with: java-version: 1.8 - name: Build with Maven - run: mvn package --file pom.xml + run: mvn -B package --file pom.xml