How to print a text with the Gradle? Echo
About
This page shows you how you can print or log a sentence with Gralde
Example
Kotlin
tasks.register("logInfo") {
logging.captureStandardOutput(LogLevel.INFO)
doFirst {
println("A task message which is logged at INFO level")
}
}