diff --git a/gradle/01-hello-task/build.gradle b/gradle/01-hello-task/build.gradle index 7b61e71..96000bc 100644 --- a/gradle/01-hello-task/build.gradle +++ b/gradle/01-hello-task/build.gradle @@ -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!" + } }