2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 15:37:10 -07:00

Merge pull request #7 from melix/cc/use-official-graalvm-plugin

Use the official GraalVM plugin
This commit is contained in:
Geert Bevin 2023-03-05 10:39:39 -05:00 committed by GitHub
commit 83e52c0e06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 8 deletions

View file

@ -6,6 +6,7 @@ plugins {
application
id("com.uwyn.rife2")
`maven-publish`
id("org.graalvm.buildtools.native") version "0.9.20"
}
base {
@ -68,3 +69,7 @@ publishing {
}
}
}
graalvmNative.binaries.all {
imageName.set("hello-$version")
}