fix hello task - use doLast

This commit is contained in:
Juraj Michalek
2014-05-09 12:12:12 +02:00
parent fb2e286af3
commit 25304c80bc

View File

@@ -1,5 +1,9 @@
task hello {
// Loaded in configuration phase
description = "Say Hello :-)"
println "Hello FI MUNI!"
doLast {
// Executed in execution phase
println "Hello FI MUNI!"
}
}