Skip to content

Commit

Permalink
Use "mvn -B" when compiling or running tests in maven projects to avo…
Browse files Browse the repository at this point in the history
…id ANSI coloring clutter and fix bbatsov#1647
  • Loading branch information
steinarb committed Feb 25, 2021
1 parent 1dbdb43 commit 040b43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -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/")
Expand Down

0 comments on commit 040b43f

Please sign in to comment.