09 example with doLast - config/exec phase

This commit is contained in:
Juraj Michalek
2014-05-09 12:22:20 +02:00
parent faa16c51e7
commit 64f78ee11c
2 changed files with 30 additions and 18 deletions

View File

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