Files
2014-05-09 12:22:20 +02:00

11 lines
229 B
Groovy

task helloWorld {
// Configuration phase - Gradle learns about tasks.
// This scope is executed first
description "Say hello :-)"
doLast {
// Execution phase
println "Greetings from Brno"
}
}