Remove run task

This commit is contained in:
JeremyStar™ 2024-12-25 17:23:54 +01:00
parent 7a1c718270
commit 56021dba1f
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -78,7 +78,6 @@ application {
} }
// GraalVM native-image // GraalVM native-image
// -> Configure
nativeImage { nativeImage {
outputs.upToDateWhen { true } outputs.upToDateWhen { true }
@ -104,12 +103,3 @@ nativeImage {
add("-H:IncludeResources=.*properties\$") 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")
}