From 56021dba1f8ed54c42b5069062c22e8380639131 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Wed, 25 Dec 2024 17:23:54 +0100 Subject: [PATCH] Remove run task --- testapp/build.gradle.kts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/testapp/build.gradle.kts b/testapp/build.gradle.kts index c7d2c92..a4e3b33 100644 --- a/testapp/build.gradle.kts +++ b/testapp/build.gradle.kts @@ -78,7 +78,6 @@ application { } // GraalVM native-image -// -> Configure nativeImage { outputs.upToDateWhen { true } @@ -104,12 +103,3 @@ nativeImage { add("-H:IncludeResources=.*properties\$") } } - -// -> Run task -tasks.register("runNativeImage", Exec::class) { - outputs.upToDateWhen { false } - dependsOn(tasks.nativeImage) - - args(application.applicationDefaultJvmArgs) - executable("build/bin/sosengine-testapp") -}