From a8d080c77f8067a8635205b45d6f79139adf0228 Mon Sep 17 00:00:00 2001 From: Gerd Aschemann Date: Sat, 21 Oct 2023 11:34:53 +0200 Subject: [PATCH] #309 Align Task definition with Gradle conventions --- htmlSanityCheck-core/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmlSanityCheck-core/build.gradle b/htmlSanityCheck-core/build.gradle index 6255ef7a..3462ec86 100644 --- a/htmlSanityCheck-core/build.gradle +++ b/htmlSanityCheck-core/build.gradle @@ -19,7 +19,7 @@ dependencies { apply plugin: 'groovy' -task copyResourceImages(type: Copy) { +tasks.register('copyResourceImages', Copy) { from('src/main/resources') { include '**/*.png' }