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.
This commit is contained in:
Arthur Baars
2019-09-20 12:41:36 -07:00
committed by GitHub
parent dcaa948ed3
commit 117a695161
+1 -1
View File
@@ -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