From c8b280f5dfeb1fc61538afae3403e04fe3b14477 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Thu, 7 Nov 2024 15:09:53 +0100 Subject: [PATCH] Include the directive in already existing 'application' block (#371) --- metafix-runner/build.gradle | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/metafix-runner/build.gradle b/metafix-runner/build.gradle index 6a93ea71..94b63370 100644 --- a/metafix-runner/build.gradle +++ b/metafix-runner/build.gradle @@ -2,12 +2,6 @@ plugins { id 'application' } -application - startScripts { - // See https://github.com/metafacture/metafacture-fix/issues/371 - classpath = files('*') - } - dependencies { implementation project(':metafix') @@ -54,4 +48,9 @@ application { "-XX:StartFlightRecording=dumponexit=true,filename=${file}.jfr,settings=profile" ] } + + startScripts { + // See https://github.com/metafacture/metafacture-fix/issues/371 + classpath = files('*') + } }