ConsoleZ maven color output

三世轮回 提交于 2021-02-19 03:07:10

问题


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]

回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/48763641/consolez-maven-color-output

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!