Is there any gradle plugin that i'm able to execut...
# server
j
Is there any gradle plugin that i'm able to execute the app without java installed on the machine?
m
Are you looking at a K/N server maybe? Ktor has something like this, see https://ktor.io/docs/server-native.html
j
not native. but i want to convert the java/kotlin code into exe
m
exe is native in that context
I think ktor does not support windows yet though
The other thing you can look into is GraalVM: https://www.graalvm.org/
k
d
The graalvm native plugin for gradle is now very good. Just be careful about using refection etc in your app because it complicates things a lot IME
6