aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--projectile.el4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2dbaf3a..3192213 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
* Add `project` param to `projectile-generate-process-name`.
* [#1608](https://github.com/bbatsov/projectile/pull/1608): Use rebar3 build system by default for Erlang projects.
* Rename `projectile-project-root-files-functions` to `projectile-project-root-functions`.
+* [#1647](https://github.com/bbatsov/projectile/issues/1647): Use "-B" in the mvn commands to avoid ANSI coloring clutter in the compile buffer
### Bugs fixed
diff --git a/projectile.el b/projectile.el
index c49c838..f515da3 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/")