From e71ebef3ec7ef8bbde6676e99a0f3e96ed5c12c3 Mon Sep 17 00:00:00 2001 From: Burt Harris Date: Mon, 26 Sep 2016 08:28:52 -0700 Subject: [PATCH] Adding -q to mvn command line for appveyor --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0588deb6d..075adaded 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ version: '4.5.4-SNAPSHOT+AppVeyor.{build}' os: Windows Server 2012 build_script: - - mvn compile --batch-mode + - mvn compile -q --batch-mode test_script: - - mvn install -Dantlr-python2-python="C:\Python27\python.exe" -Dantlr-python3-python="C:\Python35\python.exe" -Dantlr-javascript-nodejs="C:\Program Files (x86)\nodejs\node.exe" --batch-mode + - mvn install -q -Dantlr-python2-python="C:\Python27\python.exe" -Dantlr-python3-python="C:\Python35\python.exe" -Dantlr-javascript-nodejs="C:\Program Files (x86)\nodejs\node.exe" --batch-mode