I find that sometimes, ANSI escaping chars in mvn output prevents me to do this search with grep:
mvn | grep -P "\[INFO\]"
I have to use "\[.*INFO.*\]" to get results.
How to disable processing the ANSI escaping chars? I think there is some config for this?