From a28671056cfae47b32e630f7cf706d23a3525d22 Mon Sep 17 00:00:00 2001 From: Michael Lorenz Date: Sat, 26 Nov 2016 07:49:35 +0100 Subject: [PATCH] chore: update deprecation --- 1.02-Exercise-InstallGradle/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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!" + } } /*