diff --git a/testapp/build.gradle.kts b/testapp/build.gradle.kts index c7d2c923e..a4e3b33d6 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") -}