diff --git a/1.02-Exercise-InstallGradle/build.gradle b/1.02-Exercise-InstallGradle/build.gradle index ac68311f0..c519feb64 100755 --- a/1.02-Exercise-InstallGradle/build.gradle +++ b/1.02-Exercise-InstallGradle/build.gradle @@ -99,8 +99,10 @@ much faster the second run is. */ -task helloWorld << { - println "Hello, World!" +task helloWorld { + doLast{ + println "Hello, World!" + } } /*