I use gradle from a bit unorthodox terminal, so gradle traditional "pretty" output doesn't work.
Is there a way to indicate in ~ / .gradle / gradle.properties that --console=plain should be used for every gradle command?
--console=plain
you can try adding this to your ~/.gradle/init.gradle file
~/.gradle/init.gradle
gradle.startParameter.colorOutput = false
this seems like a trick on my osx terminal.
Use org.gradle.console=plain
org.gradle.console=plain
(Filling out because this post-body must be at least 30 characters, despite the fact that the complete and accurate answer takes only 28.)