g6380647
g6380647

Reputation: 277

ConsoleZ maven color output

Recent maven versions do colored output in terminal. Git Bash shows correct colors, but ConsoleZ configured to use git bash does not. It just outputs raw color codes. Does anyone know how to fix it

$ mvn clean
[←[1;34mINFO←[m] Scanning for projects...
[←[1;34mINFO←[m]

Upvotes: 4

Views: 1529

Answers (3)

jSebestyén
jSebestyén

Reputation: 1806

Following up on Lyle Z's answer I'm now using the following alias:

alias mvn="mvn_tee_output"
function mvn_tee_output () {
    "mvn" $@ | tee
} 

Upvotes: 0

Lyle Z
Lyle Z

Reputation: 1363

On Cygwin, when I pipe the output of Maven to the tee command, it fixes the output so that it displays the actual colored text instead of [←[1;34mINFO←[m] stuff:

./mvnw -pl *-common -pl *jdbc-autoconfig dependency:tree -Dincludes=org.springframework | tee

Upvotes: 3

Quang Nguyen
Quang Nguyen

Reputation: 144

I met the same issue in Window10 with Git Bash in both Console2 and ConsoleZ (try different configuration but it does not work). After a lot of attempt, I decided to give a try to ConEmu. Amazing, it works perfect. I can configure all my prefer behaviors like in ConsoleX, AND the bottom line is maven now can display correctly like in native git bash.

I think you can give a try to ConEmu. This is the configuration for GitBash (it's quite same as ConsoleX)

Settings -> Startup -> Add new (+)

Task parameters

/icon "C:\Program Files\Git\mingw64\share\git\git-for-windows.ico" /dir E:\

Commands

"C:\Program Files\Git\bin\sh.exe" --login -i

Remember to update your paths

Hope this helps.

Upvotes: 2

Related Questions