When running the app via `gradle run` console outp...
# gradle
k
When running the app via
gradle run
console output of the app and of Gradle itself are interleaved - is there a way to stop Gradle printing how much the run task is been running for?
e
--quiet (or -q) --console=plain
or use the installDist task created by the application plugin, and run the binary output by it
k
thanks, exactly what I needed!