From 040b43f387de31df8c49bb0aac3e181e959ab755 Mon Sep 17 00:00:00 2001 From: Steinar Bang Date: Thu, 25 Feb 2021 17:17:18 +0100 Subject: [PATCH] Use "mvn -B" when compiling or running tests in maven projects to avoid ANSI coloring clutter and fix #1647 --- projectile.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projectile.el b/projectile.el index c49c838b7..f515da3fc 100644 --- a/projectile.el +++ b/projectile.el @@ -2796,8 +2796,8 @@ test/impl/other files as below: ;; Java & friends (projectile-register-project-type 'maven '("pom.xml") :project-file "pom.xml" - :compile "mvn clean install" - :test "mvn test" + :compile "mvn -B clean install" + :test "mvn -B test" :test-suffix "Test" :src-dir "main/src/" :test-dir "main/test/")